Package javax.slee.facilities

Examples of javax.slee.facilities.TimerOptions


   * This method sets the Timer Object for passed ACI
   *
   * @param ac
   */
  private void setTimer(ActivityContextInterface ac) {
    TimerOptions options = new TimerOptions();
    options.setPersistent(true);

    // Set the timer on ACI
    TimerID timerID = this.timerFacility.setTimer(ac, null, System
        .currentTimeMillis()
        + waitingTime, options);
View Full Code Here

TOP

Related Classes of javax.slee.facilities.TimerOptions

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.