b3f0aef4ea90d29a472b3add45973e22fe5e48d1
[ccsdk/sli/adaptors.git] /
1 package org.onap.ccsdk.sli.adaptors.messagerouter.consumer.provider.impl;
2
3 import org.onap.ccsdk.sli.adaptors.messagerouter.consumer.api.PullingConsumer;
4 import org.onap.ccsdk.sli.adaptors.messagerouter.consumer.api.RequestHandler;
5
6 public class PullingConsumerImpl extends AbstractBaseConsumer implements PullingConsumer {
7
8     public PullingConsumerImpl(String username, String password, String host, String authentication, Integer connectTimeout, Integer readTimeout, String group, String id, String filter, Integer limit, Integer timeoutQueryParamValue) {
9         super(username, password, host, authentication, connectTimeout, readTimeout, group, id, filter, limit, timeoutQueryParamValue);
10     }
11
12     @Override
13     public void pull() {
14         this.poll();
15     }
16
17 }