Package org.jwebsocket.plugins.flashbridge

Examples of org.jwebsocket.plugins.flashbridge.FlashBridgePlugIn$BridgeProcess


    List<WebSocketPlugIn> defaultPlugins = new FastList<WebSocketPlugIn>();

    defaultPlugins.add(new SystemPlugIn());
    defaultPlugins.add(new RPCPlugIn());
    defaultPlugins.add(new StreamingPlugIn());
    defaultPlugins.add(new FlashBridgePlugIn());

    pluginMap.put("ts0", defaultPlugins);
    if (log.isInfoEnabled()) {
      log.info("Default plug-ins instantiated.");
    }
View Full Code Here


      // the system plug-in is essential to process authentication
      // send and broadcast
      lPlugInChain.addPlugIn(new SystemPlugIn());
      // the FlashBrigde plug-in is strongly recommended to also support
      // non websocket compliant browsers
      lPlugInChain.addPlugIn(new FlashBridgePlugIn());

    }
  }
View Full Code Here

TOP

Related Classes of org.jwebsocket.plugins.flashbridge.FlashBridgePlugIn$BridgeProcess

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.