Interface IScheduledExecutorService
- Namespace
- Java.Util.Concurrent
- Assembly
- MASES.JNet.dll
.NET interface skeleton to be manually developed following https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/concurrent/ScheduledExecutorService.html
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