Package org.mobicents.slee.util

Examples of org.mobicents.slee.util.StateCallback


    SessionAssociation sa = (SessionAssociation) cache.get(callId);
    // This state is used to manage the state machine transitions in the Sbb
    // implementation
    sa.setState(stateName);
    // Also communicate the state to external observers
    StateCallback callback = sa.getStateCallback();
    if (callback != null) { // The callback property is optional and can be
      // null
      callback.setSessionState(stateName);
    }

  }
View Full Code Here

TOP

Related Classes of org.mobicents.slee.util.StateCallback

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.