use of io.knotx.splitter.impl.FragmentSplitterKnotProxyImpl in project knotx by Cognifide.
the class FragmentSplitterVerticle 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(configuration.getAddress()).register(KnotProxy.class, new FragmentSplitterKnotProxyImpl(configuration));
}
Aggregations