use of io.knotx.knot.assembler.impl.FragmentAssemblerKnotProxyImpl in project knotx by Cognifide.
the class FragmentAssemblerVerticle 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.address()).register(KnotProxy.class, new FragmentAssemblerKnotProxyImpl(config()));
}
Aggregations