...
- Your driver class should inherit from DebugStreamAsynDriver class (and therefore will become an asyn driver)
- call the DebugStreamAsynDriver in the initializer list or the constructor of the asyn driver
- create your parameters in constructor
- Overload the virtual asyn write and read functions if necessary
- Overload the virtual streamPoll method of the parent class. This is where you will read and process the streams.
- Create IOC shell command that instantiates your driver class
This is a streamPoll method example
...