Click or drag to resize
Akka.NETSchedulerExtensions Class
TBD
Inheritance Hierarchy
SystemObject
  Akka.ActorSchedulerExtensions

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static class SchedulerExtensions

The SchedulerExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberScheduleOnce
Schedules an action to be invoked after an delay. The action will be wrapped so that it completes inside the currently active actor if it is called from within an actor.
Remarks
Note! It's considered bad practice to use concurrency inside actors, and very easy to get wrong so usage is discouraged.
Public methodStatic memberScheduleOnceCancelable(IActionScheduler, Int32, Action)
Schedules an action to be invoked after an delay.
Public methodStatic memberScheduleOnceCancelable(IActionScheduler, TimeSpan, Action)
Schedules an action to be invoked after an delay.
Public methodStatic memberScheduleRepeatedly
Schedules an action to be invoked after an initial delay and then repeatedly. The action will be wrapped so that it completes inside the currently active actor if it is called from within an actor
Remarks
Note! It's considered bad practice to use concurrency inside actors, and very easy to get wrong so usage is discouraged.
Public methodStatic memberScheduleRepeatedlyCancelable(IActionScheduler, Int32, Int32, Action)
Schedules an action to be invoked after an initial delay and then repeatedly.
Public methodStatic memberScheduleRepeatedlyCancelable(IActionScheduler, TimeSpan, TimeSpan, Action)
Schedules an action to be invoked after an initial delay and then repeatedly.
Public methodStatic memberScheduleTellOnce
Schedules to send a message once after a specified period of time.
Public methodStatic memberScheduleTellOnceCancelable(IScheduler, Int32, ICanTell, Object, IActorRef)
Schedules to send a message once after a specified period of time.
Public methodStatic memberScheduleTellOnceCancelable(IScheduler, TimeSpan, ICanTell, Object, IActorRef)
Schedules to send a message once after a specified period of time.
Public methodStatic memberScheduleTellRepeatedly
Schedules to send a message repeatedly. The first message will be sent after the specified initial delay and there after at the rate specified.
Public methodStatic memberScheduleTellRepeatedlyCancelable(IScheduler, Int32, Int32, 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.
Public methodStatic memberScheduleTellRepeatedlyCancelable(IScheduler, 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.
Top
See Also