![]() |
#include <SocketServer.h>
Public Member Functions | |
virtual | ~Strategy () |
virtual void | onConnect (SocketServer &, int acceptSocket, int socket)=0 |
virtual void | onWrite (SocketServer &, int socket)=0 |
virtual bool | onData (SocketServer &, int socket)=0 |
virtual void | onDisconnect (SocketServer &, int socket)=0 |
virtual void | onError (SocketServer &)=0 |
virtual void | onTimeout (SocketServer &) |
Definition at line 86 of file SocketServer.h.
virtual FIX::SocketServer::Strategy::~Strategy | ( | ) | [inline, virtual] |
Definition at line 89 of file SocketServer.h.
virtual void FIX::SocketServer::Strategy::onConnect | ( | SocketServer & | , | |
int | acceptSocket, | |||
int | socket | |||
) | [pure virtual] |
Implemented in FIX::HttpServer, and FIX::SocketAcceptor.
Referenced by FIX::ServerWrapper::onEvent().
virtual bool FIX::SocketServer::Strategy::onData | ( | SocketServer & | , | |
int | socket | |||
) | [pure virtual] |
Implemented in FIX::HttpServer, and FIX::SocketAcceptor.
Referenced by FIX::ServerWrapper::onEvent().
virtual void FIX::SocketServer::Strategy::onDisconnect | ( | SocketServer & | , | |
int | socket | |||
) | [pure virtual] |
Implemented in FIX::HttpServer, and FIX::SocketAcceptor.
Referenced by FIX::ServerWrapper::onError().
virtual void FIX::SocketServer::Strategy::onError | ( | SocketServer & | ) | [pure virtual] |
Implemented in FIX::HttpServer, and FIX::SocketAcceptor.
Referenced by FIX::ServerWrapper::onError().
virtual void FIX::SocketServer::Strategy::onTimeout | ( | SocketServer & | ) | [inline, virtual] |
Reimplemented in FIX::HttpServer, and FIX::SocketAcceptor.
Definition at line 95 of file SocketServer.h.
Referenced by FIX::ServerWrapper::onTimeout().
virtual void FIX::SocketServer::Strategy::onWrite | ( | SocketServer & | , | |
int | socket | |||
) | [pure virtual] |
Implemented in FIX::HttpServer, and FIX::SocketAcceptor.
Referenced by FIX::ServerWrapper::onWrite().