xrootd
XrdClientCallback.hh
Go to the documentation of this file.
1 
2 // //
3 // XrdClientCallback //
4 // //
5 // Author: Fabrizio Furano (CERN IT-DSS, 2009) //
6 // //
7 // Base class for objects receiving events from XrdClient //
8 // //
10 
11 // $Id$
12 
13 #ifndef XRD_CLIENTCALLBACK_H
14 #define XRD_CLIENTCALLBACK_H
15 
16 class XrdClientAbs;
17 
19 {
20 
21 public:
22 
23  // Invoked when an Open request completes with some result.
24  virtual void OpenComplete(XrdClientAbs *clientP, void *cbArg, bool res) = 0;
25 
27  virtual ~XrdClientCallback() {}
28 };
29 
30 
31 
32 #endif