* Sets up a handler for messages with the specified name. */
| 214 | * Sets up a handler for messages with the specified name. |
| 215 | */ |
| 216 | void install( |
| 217 | const std::string& name, |
| 218 | const MessageHandler& handler) |
| 219 | { |
| 220 | handlers.message[name] = handler; |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * @copydoc process::ProcessBase::install |