Obtain the actor's address for use as a message sender or recipient.
| 88 | |
| 89 | // Obtain the actor's address for use as a message sender or recipient. |
| 90 | actor_address address() |
| 91 | { |
| 92 | return this; |
| 93 | } |
| 94 | |
| 95 | // Send a message from one actor to another. |
| 96 | template <class Message> |
no outgoing calls
no test coverage detected