CernVM-FS  2.12.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
health_check.h
Go to the documentation of this file.
1 
5 #ifndef CVMFS_NETWORK_HEALTH_CHECK_H_
6 #define CVMFS_NETWORK_HEALTH_CHECK_H_
7 
8 #include "util/single_copy.h"
9 
10 namespace download {
11 
23  public:
25  virtual ~HealthCheck() {}
26  virtual void StartHealthcheck() = 0;
27  virtual void StopHealthcheck() = 0;
28 };
29 
30 } // namespace download
31 
32 #endif // CVMFS_NETWORK_HEALTH_CHECK_H_
virtual void StartHealthcheck()=0
virtual void StopHealthcheck()=0