use of io.knotx.repository.impl.HttpRepositoryConnectorProxyImpl in project knotx by Cognifide.
the class HttpRepositoryConnectorVerticle method start.
@Override
public void start() throws Exception {
LOGGER.info("Starting <{}>", this.getClass().getSimpleName());
// register the service proxy on event bus
serviceBinder = new ServiceBinder(getVertx());
consumer = serviceBinder.setAddress(address).register(RepositoryConnectorProxy.class, new HttpRepositoryConnectorProxyImpl(vertx, config()));
}
Aggregations