1#ifndef Cpl_Io_Tcp_Async_Connector_h_
2#define Cpl_Io_Tcp_Async_Connector_h_
86 const char* remoteHostName,
87 int portNumToConnectTo ) = 0;
92 virtual void poll() noexcept = 0;
This class defines the callback mechanism used for accepting incoming TCP connections.
Definition AsyncConnector.h:47
virtual void connectionFailed(Error_T errorCode) noexcept=0
This method is a callback method that is called when an error occurred when making the connection req...
virtual bool newConnection(Cpl::Io::Descriptor newFd) noexcept=0
This method is a callback method that is called when the remote host has accepted in connection reque...
Error_T
Possible error codes when attempting to establish a connection.
Definition AsyncConnector.h:50
@ eERROR
Error occurred.
Definition AsyncConnector.h:51
@ eREFUSED
Connection request was refused by the remote Host.
Definition AsyncConnector.h:52
This abstract class defines the interface for establishing/requesting a SIMPLE socket connection,...
Definition AsyncConnector.h:41
virtual void poll() noexcept=0
This method must be called periodically to service the connection status.
virtual void terminate() noexcept=0
Aborts any connection in progress and/or will CLOSE the active connection.
virtual bool establish(Client &client, const char *remoteHostName, int portNumToConnectTo)=0
Requests a client connection to the specified remote Host.
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