The methods of Java.Util.Concurrent.IScheduledExecutorService are listed below. For a list of all members, see the IScheduledExecutorService Members list.
Schedule(Java.Lang.IRunnable, long, TimeUnit)Creates and executes a one-shot action that becomes enabled after the given delay. | ||
Schedule(ICallable, long, TimeUnit)Documentation for this section has not yet been entered. | ||
ScheduleAtFixedRate(Java.Lang.IRunnable, long, long, TimeUnit)Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; that is executions will commence after initialDelay then initialDelay+period, then initialDelay + 2 * period, and so on. | ||
ScheduleWithFixedDelay(Java.Lang.IRunnable, long, long, TimeUnit)Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given delay between the termination of one execution and the commencement of the next. |