BDE 4.14.0 Production release
|
Provide a mechanism for mapping control messages to callbacks.
The balb::ControlManager
mechanism provided by this component maps control messages to callback functions on the basis of message prefixes.
Functions registered as callbacks for messages must be invokable as void(*)(const bsl::string&, bsl::istream&)
. (This signature is balb::ControlManager::ControlHandler
). When the function is invoked, the first argument is the message prefix, and the second is a stream on the remainder of the message.
This component is thread-safe and thread-enabled: it is safe to access and manipulate multiple distinct instances from different threads, and it is safe to access and manipulate a single shared instance from different threads.
This section illustrates intended use of this component.
First define a trivial callback to be invoked when an "ECHO" message is received:
Now create a balb::ControlManager
object and register a handler for "ECHO". Also register a handler for HELP to observe the auto-generated documentation for ECHO: