Determine whether the message handler represents the specified function.
| 69 | |
| 70 | // Determine whether the message handler represents the specified function. |
| 71 | bool is_function(void (Actor::* mf)(Message, actor_address)) const |
| 72 | { |
| 73 | return mf == function_; |
| 74 | } |
| 75 | |
| 76 | private: |
| 77 | void (Actor::* function_)(Message, actor_address); |