Java.Util.Concurrent.ScheduledThreadPoolExecutor: Method Members

The methods of Java.Util.Concurrent.ScheduledThreadPoolExecutor are listed below. For a list of all members, see the ScheduledThreadPoolExecutor Members list.

See Also: Inherited members from Java.Util.Concurrent.ThreadPoolExecutor

Public Methods

Schedule(Java.Lang.IRunnable, long, TimeUnit) : IScheduledFuture
Creates and executes a one-shot action that becomes enabled after the given delay.
Schedule(ICallable, long, TimeUnit) : IScheduledFuture
Documentation for this section has not yet been entered.
ScheduleAtFixedRate(Java.Lang.IRunnable, long, long, TimeUnit) : IScheduledFuture
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) : IScheduledFuture
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.

Protected Methods

DecorateTask(Java.Lang.IRunnable, IRunnableScheduledFuture) : IRunnableScheduledFuture
Documentation for this section has not yet been entered.
DecorateTask(ICallable, IRunnableScheduledFuture) : IRunnableScheduledFuture
Documentation for this section has not yet been entered.