use of io.knotx.gateway.impl.GatewayKnotProxyImpl in project knotx by Cognifide.
the class GatewayKnotVerticle 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 GatewayKnotProxyImpl());
}
Aggregations