Interface IScheduledExecutorService
- Namespace
- Java.Util.Concurrent
- Assembly
- MASES.JNet.dll
.NET interface for TO BE DEFINED FROM USER
public interface IScheduledExecutorService : IExecutorService, IExecutor
- Inherited Members
Methods
Schedule(Runnable, long, TimeUnit)
ScheduledFuture<object> Schedule(Runnable arg0, long arg1, TimeUnit arg2)
Parameters
Returns
ScheduleAtFixedRate(Runnable, long, long, TimeUnit)
ScheduledFuture<object> ScheduleAtFixedRate(Runnable arg0, long arg1, long arg2, TimeUnit arg3)
Parameters
Returns
ScheduleWithFixedDelay(Runnable, long, long, TimeUnit)
ScheduledFuture<object> ScheduleWithFixedDelay(Runnable arg0, long arg1, long arg2, TimeUnit arg3)
Parameters
Returns
Schedule<V>(Callable<V>, long, TimeUnit)
ScheduledFuture<V> Schedule<V>(Callable<V> arg0, long arg1, TimeUnit arg2)
Parameters
Returns
Type Parameters
V