Click or drag to resize
Akka.NETITellScheduler.ScheduleTellRepeatedly Method (TimeSpan, TimeSpan, ICanTell, Object, IActorRef)
Schedules to send a message repeatedly. The first message will be sent after the specified initial delay and there after at the rate specified.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax
void ScheduleTellRepeatedly(
	TimeSpan initialDelay,
	TimeSpan interval,
	ICanTell receiver,
	Object message,
	IActorRef sender
)

Parameters

initialDelay
Type: System.TimeSpan
The time period that has to pass before the first message is sent.
interval
Type: System.TimeSpan
The interval, i.e. the time period that has to pass between messages are being sent.
receiver
Type: Akka.Actor.ICanTell
The receiver.
message
Type: System.Object
The message.
sender
Type: Akka.Actor.IActorRef
The sender.
See Also