| ITellSchedulerScheduleTellOnce Method (TimeSpan, ICanTell, Object, IActorRef) |
Schedules to send a message once after a specified period of time.
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax void ScheduleTellOnce(
TimeSpan delay,
ICanTell receiver,
Object message,
IActorRef sender
)
abstract ScheduleTellOnce :
delay : TimeSpan *
receiver : ICanTell *
message : Object *
sender : IActorRef -> unit
Parameters
- delay
- Type: SystemTimeSpan
The time period that has to pass before the message is sent. - receiver
- Type: Akka.ActorICanTell
The receiver. - message
- Type: SystemObject
The message. - sender
- Type: Akka.ActorIActorRef
The sender.
See Also