Skip to content
Snippets Groups Projects
Commit ab980ad9 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

From Gerri:

add dummy method Reconnect(), implemented in TXSocket for reconnections
in PROOF.


git-svn-id: http://root.cern.ch/svn/root/trunk@24457 27541ba8-7e3a-0410-8455-c3a389f83636
parent 0a3d374b
No related branches found
No related tags found
No related merge requests found
...@@ -145,6 +145,7 @@ public: ...@@ -145,6 +145,7 @@ public:
virtual Int_t Recv(char *mess, Int_t max); virtual Int_t Recv(char *mess, Int_t max);
virtual Int_t Recv(char *mess, Int_t max, Int_t &kind); virtual Int_t Recv(char *mess, Int_t max, Int_t &kind);
virtual Int_t RecvRaw(void *buffer, Int_t length, ESendRecvOptions opt = kDefault); virtual Int_t RecvRaw(void *buffer, Int_t length, ESendRecvOptions opt = kDefault);
virtual Int_t Reconnect() { return -1; }
virtual Int_t Select(Int_t interest = kRead, Long_t timeout = -1); virtual Int_t Select(Int_t interest = kRead, Long_t timeout = -1);
virtual Int_t Send(const TMessage &mess); virtual Int_t Send(const TMessage &mess);
virtual Int_t Send(Int_t kind); virtual Int_t Send(Int_t kind);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment