| 97 | } |
| 98 | |
| 99 | void Consumer::AddHandlerFactory(const int handle_id, comm::HandlerFactory * const hf) { |
| 100 | impl_->fs.AddFactory(handle_id, hf); |
| 101 | } |
| 102 | |
| 103 | unique_ptr<comm::Handler> Consumer::GetHandler(const int handle_id) { |
| 104 | auto &&f = impl_->fs.GetFactory(handle_id); |