Click or drag to resize
Cell Methods

The Cell type exposes the following members.

Methods
  NameDescription
Public methodGetChildByName
Public methodGetChildren
Public methodGetSingleChild
Method for looking up a single child beneath this actor. It is racy if called from the outside.
Public methodPost
Public methodRestart
Restart this actor (will recursively restart or stop all children). Is only allowed to throw Fatal Throwables.
Public methodResume
Recursively resume this actor and all its children. Is only allowed to throw fatal exceptions.
Public methodStart
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.
Public methodStop
Recursively terminate this actor and all its children. Is only allowed to throw Fatal Throwables.
Public methodSuspend
Recursively suspend this actor and all its children. Is only allowed to throw fatal exceptions.
Public methodTryGetChildStatsByName
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.
Top
See Also