template class Poco::Net::TCPServerConnectionFactoryImpl
Overview
This template provides a basic implementation of TCPServerConnectionFactory. Moreā¦
#include <TCPServerConnectionFactory.h> template <class S> class TCPServerConnectionFactoryImpl: public Poco::Net::TCPServerConnectionFactory { public: // methods virtual TCPServerConnection* createConnection(const StreamSocket& socket); };
Inherited Members
public: // typedefs typedef Poco::SharedPtr<TCPServerConnectionFactory> Ptr; // methods virtual TCPServerConnection* createConnection(const StreamSocket& socket) = 0;
Detailed Documentation
This template provides a basic implementation of TCPServerConnectionFactory.
Methods
virtual TCPServerConnection* createConnection(const StreamSocket& socket)
Creates an instance of a subclass of TCPServerConnection, using the given StreamSocket.