Java.Util.Concurrent.IScheduledExecutorService Members

The members of Java.Util.Concurrent.IScheduledExecutorService are listed below.

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.