Click or drag to resize
Akka.NETSchedulerExtensions.ScheduleOnceCancelable Method (IActionScheduler, TimeSpan, Action)
Schedules an action to be invoked after an delay.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static ICancelable ScheduleOnceCancelable(
	this IActionScheduler scheduler,
	TimeSpan delay,
	Action action
)

Parameters

scheduler
Type: Akka.Actor.IActionScheduler
The scheduler
delay
Type: System.TimeSpan
The time period that has to pass before the action is invoked.
action
Type: System.Action
The action to perform.

Return Value

Type: ICancelable
A cancelable that can be used to cancel the action from being executed

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IActionScheduler. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also