| IMaterializerScheduleOnce Method |
Interface for stages that need timer services for their functionality. Schedules a
single task with the given delay.
Namespace:
Akka.Streams
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax ICancelable ScheduleOnce(
TimeSpan delay,
Action action
)
abstract ScheduleOnce :
delay : TimeSpan *
action : Action -> ICancelable
Parameters
- delay
- Type: SystemTimeSpan
TBD - action
- Type: SystemAction
TBD
Return Value
Type:
ICancelable
A
ICancelable that allows cancelling the timer. Cancelling is best effort,
if the event has been already enqueued it will not have an effect.
See Also