1#ifndef Cpl_Io_Tcp_AsyncListener_h_
2#define Cpl_Io_Tcp_AsyncListener_h_
77 int portNumToListenOn )
noexcept = 0;
82 virtual void poll() noexcept = 0;
This class defines the callback mechanism used for accepting incoming TCP connections.
Definition AsyncListener.h:48
virtual ~Client()
Virtual destructor.
Definition AsyncListener.h:67
virtual bool newConnection(Cpl::Io::Descriptor newFd, const char *rawConnectionInfo) noexcept=0
This method is a callback method that is called when the listener has accepted in incoming socket req...
This abstract class defines the interface for a SIMPLE socket listener.
Definition AsyncListener.h:42
virtual bool startListening(Client &client, int portNumToListenOn) noexcept=0
Starts the Listener listening.
virtual void terminate() noexcept=0
Shuts down the Listener and/or will CLOSE the active connection.
virtual void poll() noexcept=0
This method must be called periodically to service the listen/connection status.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This union defines a 'IO descriptor' in terms of a an integer and/or a void*.
Definition Descriptor.h:26