Handle an incoming message.
| 63 | |
| 64 | // Handle an incoming message. |
| 65 | virtual void handle_message(Message msg, actor_address from) |
| 66 | { |
| 67 | (actor_->*function_)(std::move(msg), from); |
| 68 | } |
| 69 | |
| 70 | // Determine whether the message handler represents the specified function. |
| 71 | bool is_function(void (Actor::* mf)(Message, actor_address)) const |