| IMaterializerScheduleRepeatedly Method |
Interface for stages that need timer services for their functionality. Schedules a
repeated task with the given interval between invocations.
Namespace:
Akka.Streams
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax ICancelable ScheduleRepeatedly(
TimeSpan initialDelay,
TimeSpan interval,
Action action
)
abstract ScheduleRepeatedly :
initialDelay : TimeSpan *
interval : TimeSpan *
action : Action -> ICancelable
Parameters
- initialDelay
- Type: SystemTimeSpan
TBD - interval
- 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