Package org.vertx.java.core.sockjs

Examples of org.vertx.java.core.sockjs.EventBusBridge$Match


    });
    return this;
  }

  public SockJSServer bridge(JsonObject sjsConfig, JsonArray inboundPermitted, JsonArray outboundPermitted) {
    EventBusBridge busBridge = new EventBusBridge(vertx, inboundPermitted, outboundPermitted);
    if (hook != null) {
      busBridge.setHook(hook);
    }
    installApp(sjsConfig, busBridge);
    return this;
  }
View Full Code Here


    return this;
  }

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

    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;
  }
View Full Code Here

TOP

Related Classes of org.vertx.java.core.sockjs.EventBusBridge$Match

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.