summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/Misc/Timer_Service.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Service_Configurator/Misc/Timer_Service.h')
-rw-r--r--examples/Service_Configurator/Misc/Timer_Service.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/examples/Service_Configurator/Misc/Timer_Service.h b/examples/Service_Configurator/Misc/Timer_Service.h
deleted file mode 100644
index 2166dbbe22e..00000000000
--- a/examples/Service_Configurator/Misc/Timer_Service.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#include "ace/Service_Config.h"
-
-class Timer_Service : public ACE_Service_Object
-{
-public:
- virtual int init (int argc, char *argv[]);
- // Initialization hook.
-
- virtual int handle_timeout (const ACE_Time_Value &,
- const void *);
- // Timeout hook.
-
- virtual int handle_close (ACE_HANDLE, ACE_Reactor_Mask);
- // Close hook.
-
-private:
- enum
- {
- TIMEOUT = 4, // Wait 4 seconds between timeouts
- MAX_TIMEOUTS = 10 // Don't timeout for more than 10 times.
- };
-
- int max_timeouts_;
- // Maximum number of timeouts before shutting down the test.
-
- int cur_timeouts_;
- // Current number of timeouts.
-};
-
-ACE_STATIC_SVC_DECLARE (Timer_Service)
-