1#ifndef Cpl_Io_Socket_Listener_h_
2#define Cpl_Io_Socket_Listener_h_
This class defines the callback mechanism used for accepting incoming socket connections.
Definition Listener.h:56
virtual ~Client()
Virtual destructor.
Definition Listener.h:69
virtual bool newConnection(Cpl::Io::Descriptor newFd, const char *rawConnectionInfo)=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 Listener.h:45
virtual void startListening(Client &client, int portNumToListenOn)=0
Starts the Listener listening.
virtual void terminate()=0
Shuts down the Listener.
virtual ~Listener()
Virtual destructor.
Definition Listener.h:86
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
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