Changed to unmaintained
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-message-adapter-api / src / main / java / org / onap / appc / adapter / message / CallableConsumer.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.adapter.message;
25
26 import java.util.List;
27 import java.util.concurrent.Callable;
28
29 public class CallableConsumer implements Callable<List<String>> {
30
31     private Consumer consumer;
32
33     private int timeout = 15000;
34     private int limit = 1000;
35
36     public CallableConsumer(Consumer c) {
37         this.consumer = c;
38     }
39
40     public CallableConsumer(Consumer c, int waitMs, int fetchSize) {
41         this.consumer = c;
42         this.timeout = waitMs;
43         this.limit = fetchSize;
44     }
45
46     @Override
47     public List<String> call() {
48         return consumer.fetch(timeout, limit);
49     }
50
51     /**
52      * The maximum amount of time to keep a connection alive. Currently is set to waitMs + 10s
53      *
54      * @return An integer representing the maximum amount of time to keep this thread alive
55      */
56     public int getMaxLife() {
57         return 10000 + timeout;
58     }
59
60 }