Click or drag to resize
Akka.NETIActionSchedulerScheduleRepeatedly Method
Overload List
  NameDescription
Public methodScheduleRepeatedly(TimeSpan, TimeSpan, Action)
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 methodScheduleRepeatedly(TimeSpan, TimeSpan, Action, ICancelable)
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.
Top
See Also