Interface (in C++ terms), that could be used for any I/O manager, synchronous and asynchronous alike. More...
#include <async_manager.hpp>
Public Member Functions | |
virtual bool | connect ()=0 |
Connects the stream. More... | |
virtual void | send (const std::string &cmd)=0 |
Sends commands to the receiver. More... | |
virtual | ~AsyncManagerBase () |
Interface (in C++ terms), that could be used for any I/O manager, synchronous and asynchronous alike.
Definition at line 90 of file async_manager.hpp.
|
inlinevirtual |
Definition at line 93 of file async_manager.hpp.
|
pure virtual |
Connects the stream.
Implemented in io::AsyncManager< IoType >.
|
pure virtual |
Sends commands to the receiver.
Implemented in io::AsyncManager< IoType >.