Click or drag to resize
SchedulerScheduleOnce Method (TimeSpan, Action, CancellationToken)
Schedules an Action once.

Namespace: Akka.Actor
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public Task ScheduleOnce(
	TimeSpan initialDelay,
	Action action,
	CancellationToken cancellationToken
)

Parameters

initialDelay
Type: SystemTimeSpan
The initial delay.
action
Type: SystemAction
The action.
cancellationToken
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: Task
Task.
See Also