Creating a Custom Connector
To create a custom connector, you need to:
1. Derive a new class from rwsf::ConnectorImp.
2. Implement a method for handling requests, and some kind of threading framework for the connector to run in.
3. Override the pure virtual methods init(), start(), and stop().
4. Configure the connector.
The following sections present code showing how to create a socket connector. Most of the code is pseudo code that will not compile without some additional elements.