return this;
}
public SockJSServer bridge(JsonObject sjsConfig, JsonArray inboundPermitted, JsonArray outboundPermitted,
long authTimeout, String authAddress) {
EventBusBridge busBridge = new EventBusBridge(vertx, inboundPermitted, outboundPermitted, authTimeout, authAddress);
if (hook != null) {
busBridge.setHook(hook);
}
installApp(sjsConfig, busBridge);
return this;
}