![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines an interface for a Socket factory. More...
This abstract class defines an interface for a Socket factory.
This class will create/destroy socket InputOutput streams.
#include <Factory.h>
Public Member Functions | |
virtual Cpl::Io::Socket::InputOutput * | create ()=0 |
This method creates an 'unactivated' Socket InputOutput stream from the supplied socket descriptor. | |
virtual void | destory (Cpl::Io::Socket::InputOutput &socketStream)=0 |
This method destroys an previously created socket InputOutput stream. | |
virtual | ~Factory () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtual |
This method creates an 'unactivated' Socket InputOutput stream from the supplied socket descriptor.
If there is an error (e.g. out-of-memory, invalid socket, etc.) then a null pointer is returned. The caller is responsible for calling destroy() method once it is done with socket stream.
Implemented in Cpl::Io::Socket::StreamPool< N >.
|
pure virtual |
This method destroys an previously created socket InputOutput stream.
The application is responsible for ensuing that ONLY InputOutput streams that where create using this factory are destroyed be this factory.
Implemented in Cpl::Io::Socket::StreamPool< N >.