Interface IDispatcherPrerequisites
Contextual information that's useful for dispatchers
Namespace: Akka.Dispatch
Assembly: Akka.dll
Syntax
public interface IDispatcherPrerequisites
Properties
| Edit this page View SourceEventStream
The EventStream that belongs to the current ActorSystem.
Declaration
EventStream EventStream { get; }
Property Value
| Type | Description |
|---|---|
| EventStream |
Mailboxes
The list of registered Mailboxes for the current ActorSystem.
Declaration
Mailboxes Mailboxes { get; }
Property Value
| Type | Description |
|---|---|
| Mailboxes |
Scheduler
The IScheduler that belongs to the current ActorSystem.
Declaration
IScheduler Scheduler { get; }
Property Value
| Type | Description |
|---|---|
| IScheduler |
Settings
The Settings for the current ActorSystem.
Declaration
Settings Settings { get; }
Property Value
| Type | Description |
|---|---|
| Settings |
Edit this page