| 26 | // -- properties --------------------------------------------------------------- |
| 27 | |
| 28 | actor_shell* router::self() { |
| 29 | if (shell_) |
| 30 | return shell_.get(); |
| 31 | shell_ = make_actor_shell(down_->manager()); |
| 32 | return shell_.get(); |
| 33 | } |
| 34 | |
| 35 | // -- API for the responders --------------------------------------------------- |
| 36 |
no test coverage detected