| IScheduler Interface |
TBD
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public interface IScheduler : ITellScheduler,
ITimeProvider
type IScheduler =
interface
interface ITellScheduler
interface ITimeProvider
end
The IScheduler type exposes the following members.
Properties Methods
| Name | Description |
---|
| ScheduleTellOnce(TimeSpan, ICanTell, Object, IActorRef) | Schedules to send a message once after a specified period of time. (Inherited from ITellScheduler.) |
| ScheduleTellOnce(TimeSpan, ICanTell, Object, IActorRef, ICancelable) | Schedules to send a message once after a specified period of time. (Inherited from ITellScheduler.) |
| ScheduleTellRepeatedly(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. (Inherited from ITellScheduler.) |
| ScheduleTellRepeatedly(TimeSpan, TimeSpan, ICanTell, Object, IActorRef, ICancelable) | Schedules to send a message repeatedly. The first message will be sent after the specified initial delay and there after at the rate specified. (Inherited from ITellScheduler.) |
TopExtension Methods
| Name | Description |
---|
| Schedule(TimeSpan, TimeSpan, Action) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| Schedule(TimeSpan, TimeSpan, IActorRef, Object) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| Schedule(TimeSpan, TimeSpan, Action, CancellationToken) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| Schedule(TimeSpan, TimeSpan, IActorRef, Object, CancellationToken) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| ScheduleOnce(TimeSpan, Action) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| ScheduleOnce(TimeSpan, IActorRef, Object) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| ScheduleOnce(TimeSpan, Action, CancellationToken) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| ScheduleOnce(TimeSpan, IActorRef, Object, CancellationToken) | Overloaded.
TBD
(Defined by DeprecatedSchedulerExtensions.) |
| ScheduleTellOnce | Schedules to send a message once after a specified period of time. (Defined by SchedulerExtensions.) |
| ScheduleTellOnceCancelable(TimeSpan, ICanTell, Object, IActorRef) | Overloaded. Schedules to send a message once after a specified period of time. (Defined by SchedulerExtensions.) |
| ScheduleTellOnceCancelable(Int32, ICanTell, Object, IActorRef) | Overloaded. Schedules to send a message once after a specified period of time. (Defined by SchedulerExtensions.) |
| ScheduleTellRepeatedly | Schedules to send a message repeatedly. The first message will be sent after the specified initial delay and there after at the rate specified. (Defined by SchedulerExtensions.) |
| ScheduleTellRepeatedlyCancelable(TimeSpan, TimeSpan, ICanTell, Object, IActorRef) | Overloaded. Schedules to send a message repeatedly. The first message will be sent after the specified initial delay and there after at the rate specified. (Defined by SchedulerExtensions.) |
| ScheduleTellRepeatedlyCancelable(Int32, Int32, ICanTell, Object, IActorRef) | Overloaded. Schedules to send a message repeatedly. The first message will be sent after the specified initial delay and there after at the rate specified. (Defined by SchedulerExtensions.) |
TopSee Also