Click or drag to resize
Akka.NETITellSchedulerScheduleTellRepeatedly 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.42 (1.2.3.42)
Syntax
void ScheduleTellRepeatedly(
	TimeSpan initialDelay,
	TimeSpan interval,
	ICanTell receiver,
	Object message,
	IActorRef sender
)

Parameters

initialDelay
Type: SystemTimeSpan
The time period that has to pass before the first message is sent.
interval
Type: SystemTimeSpan
The interval, i.e. the time period that has to pass between messages are being sent.
receiver
Type: Akka.ActorICanTell
The receiver.
message
Type: SystemObject
The message.
sender
Type: Akka.ActorIActorRef
The sender.
See Also