Package tigase.net

Examples of tigase.net.ConnectionType


    Map<String, Object> sessionData = service.getSessionData();
    String[] routings = (String[])sessionData.get(PORT_ROUTING_TABLE_PROP_KEY);
    if (routings != null) {
      updateRoutings(routings, false);
    }
    ConnectionType type = service.connectionType();
    if (type == ConnectionType.connect) {
      addWaitingTask(sessionData);
      //reconnectService(sessionData, connectionDelay);
    } // end of if (type == ConnectionType.connect)
    //    removeRouting(serv.getRemoteHost());
View Full Code Here


  public void serviceStopped(XMPPIOService service) {
    super.serviceStopped(service);
    Map<String, Object> sessionData = service.getSessionData();
    String[] routings = (String[])sessionData.get(PORT_ROUTING_TABLE_PROP_KEY);
    updateRoutings(routings, false);
    ConnectionType type = service.connectionType();
    if (type == ConnectionType.connect) {
      addWaitingTask(sessionData);
      //reconnectService(sessionData, connectionDelay);
    } // end of if (type == ConnectionType.connect)
    //    removeRouting(serv.getRemoteHost());
View Full Code Here

TOP

Related Classes of tigase.net.ConnectionType

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.