Click or drag to resize

IScheduledExecutorServiceScheduleWithFixedDelay Method

Schedules a runnable task associated with an initial delay and periodicity.

Namespace:  com.espertech.esper.compat.concurrency
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
IScheduledFuture ScheduleWithFixedDelay(
	Runnable runnable,
	TimeSpan initialDelay,
	TimeSpan periodicity
)

Parameters

runnable
Type: com.espertech.esper.compatRunnable
The runnable.
initialDelay
Type: SystemTimeSpan
The initial delay.
periodicity
Type: SystemTimeSpan
The periodicity.

Return Value

Type: IScheduledFuture

[Missing <returns> documentation for "M:com.espertech.esper.compat.concurrency.IScheduledExecutorService.ScheduleWithFixedDelay(com.espertech.esper.compat.Runnable,System.TimeSpan,System.TimeSpan)"]

See Also