Package org.openntf.domino.xots.annotations

Examples of org.openntf.domino.xots.annotations.Schedule.timeunit()


  }

  public void schedule(final Class<? extends Runnable> taskClass) {
    Schedule schedule = taskClass.getAnnotation(Schedule.class);
    if (schedule != null) {
      schedule.timeunit();
    }
  }

  public void queue(final Runnable runnable) {
    queue(runnable, runnable.getClass().getClassLoader());
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.