Examples of pauseScheduledJob()


Examples of org.red5.server.api.scheduling.ISchedulingService.pauseScheduledJob()

   * @param name
   *            Scheduled job name
   */
  public void pauseScheduledJob(String name) {
    ISchedulingService service = (ISchedulingService) ScopeUtils.getScopeService(scope, ISchedulingService.class, QuartzSchedulingService.class, false);
    service.pauseScheduledJob(name);
  }

  /**
   * Resumes a scheduled job
   *
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.