use of io.knotx.repository.impl.FilesystemRepositoryConnectorProxyImpl in project knotx by Cognifide.
the class FilesystemRepositoryConnectorVerticle 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 FilesystemRepositoryConnectorProxyImpl(vertx, config()));
}
Aggregations