Construct the actor to use the specified executor for all message handlers.
| 107 | protected: |
| 108 | // Construct the actor to use the specified executor for all message handlers. |
| 109 | actor(any_io_executor e) |
| 110 | : executor_(std::move(e)) |
| 111 | { |
| 112 | } |
| 113 | |
| 114 | // Register a handler for a specific message type. Duplicates are permitted. |
| 115 | template <class Actor, class Message> |
nothing calls this directly
no outgoing calls
no test coverage detected