summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Leader_Followers/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Leader_Followers/test_i.cpp')
-rw-r--r--ACE/TAO/tests/Leader_Followers/test_i.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Leader_Followers/test_i.cpp b/ACE/TAO/tests/Leader_Followers/test_i.cpp
new file mode 100644
index 00000000000..1a8c3d88221
--- /dev/null
+++ b/ACE/TAO/tests/Leader_Followers/test_i.cpp
@@ -0,0 +1,34 @@
+// $Id$
+
+#include "test_i.h"
+#include "ace/OS_NS_unistd.h"
+
+ACE_RCSID(Leader_Followers, test_i, "$Id$")
+
+test_i::test_i (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+{
+}
+
+void
+test_i::shutdown (void)
+{
+ this->orb_->shutdown (0);
+}
+
+CORBA::ULong
+test_i::method (CORBA::ULong work)
+{
+ ACE_DEBUG ((LM_DEBUG,
+ "Server: Working for %d milli seconds @ %T\n",
+ work));
+
+ // Time required to process this request. <work> is time units in
+ // milli seconds.
+ ACE_Time_Value work_time (0,
+ work * 1000);
+
+ ACE_OS::sleep (work_time);
+
+ return work;
+}