Table of Contents

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

arg0 Runnable

Runnable

arg1 long

long

arg2 TimeUnit

TimeUnit

Returns

ScheduledFuture<object>

ScheduledFuture

ScheduleAtFixedRate(Runnable, long, long, TimeUnit)

ScheduledFuture<object> ScheduleAtFixedRate(Runnable arg0, long arg1, long arg2, TimeUnit arg3)

Parameters

arg0 Runnable

Runnable

arg1 long

long

arg2 long

long

arg3 TimeUnit

TimeUnit

Returns

ScheduledFuture<object>

ScheduledFuture

ScheduleWithFixedDelay(Runnable, long, long, TimeUnit)

ScheduledFuture<object> ScheduleWithFixedDelay(Runnable arg0, long arg1, long arg2, TimeUnit arg3)

Parameters

arg0 Runnable

Runnable

arg1 long

long

arg2 long

long

arg3 TimeUnit

TimeUnit

Returns

ScheduledFuture<object>

ScheduledFuture

Schedule<V>(Callable<V>, long, TimeUnit)

ScheduledFuture<V> Schedule<V>(Callable<V> arg0, long arg1, TimeUnit arg2)

Parameters

arg0 Callable<V>

Callable

arg1 long

long

arg2 TimeUnit

TimeUnit

Returns

ScheduledFuture<V>

ScheduledFuture

Type Parameters

V