icinga2/base/tcpclient.h

38 lines
653 B
C++

#ifndef TCPCLIENT_H
#define TCPCLIENT_H
namespace icinga
{
class TCPClient : public TCPSocket
{
private:
FIFO::Ptr m_SendQueue;
FIFO::Ptr m_RecvQueue;
int ReadableEventHandler(EventArgs::Ptr ea);
int WritableEventHandler(EventArgs::Ptr ea);
public:
typedef shared_ptr<TCPClient> Ptr;
typedef weak_ptr<TCPClient> WeakPtr;
TCPClient(void);
virtual void Start(void);
void Connect(const char *hostname, unsigned short port);
FIFO::Ptr GetSendQueue(void);
FIFO::Ptr GetRecvQueue(void);
virtual bool WantsToRead(void) const;
virtual bool WantsToWrite(void) const;
event<EventArgs::Ptr> OnDataAvailable;
};
}
#endif /* TCPCLIENT_H */