![]() | ICell Methods |
The ICell type exposes the following members.
Name | Description | |
---|---|---|
![]() | GetChildByName |
TBD
|
![]() | GetChildren | Obsolete.
TBD
|
![]() | GetSingleChild |
Method for looking up a single child beneath this actor.
It is racy if called from the outside.
|
![]() | Restart | Restart this actor (will recursively restart or stop all children). Is only allowed to throw Fatal Throwables. |
![]() | Resume | Recursively resume this actor and all its children. Is only allowed to throw fatal exceptions. |
![]() | SendMessage |
TBD
|
![]() | SendSystemMessage |
Enqueue a message to be sent to the actor; may or may not actually
schedule the actor to run, depending on which type of cell it is.
|
![]() | Start |
Start the cell: enqueued message must not be processed before this has
been called. The usual action is to attach the mailbox to a dispatcher.
|
![]() | Stop | Recursively terminate this actor and all its children. Is only allowed to throw Fatal Throwables. |
![]() | Suspend | Recursively suspend this actor and all its children. Is only allowed to throw fatal exceptions. |
![]() | TryGetChildStatsByName |
Tries to get the stats for the child with the specified name. The stats can be either ChildNameReserved
indicating that only a name has been reserved for the child, or a ChildRestartStats for a child that
has been initialized/created.
|