summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp')
-rw-r--r--TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp
new file mode 100644
index 00000000000..ae50a6b64eb
--- /dev/null
+++ b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp
@@ -0,0 +1,47 @@
+#include "Sender_i.h"
+
+ACE_RCSID(Oneways_Invoking_Twoways, Sender_i, "$Id$")
+
+Sender_i::Sender_i (CORBA::ORB_ptr orb,
+ CORBA::ULong no)
+ : orb_ (CORBA::ORB::_duplicate (orb)),
+ number_ (no),
+ active_objects_ (0)
+{
+}
+
+Sender_i::~Sender_i (void)
+{
+}
+
+void
+Sender_i::active_objects (CORBA::Short no_threads
+ /* */ )
+{
+ this->active_objects_ = no_threads;
+}
+
+
+void
+Sender_i::send_ready_message (Test::Receiver_ptr receiver)
+{
+ ACE_DEBUG ((LM_DEBUG,
+ "Received a call ...\n"));
+
+ ACE_DEBUG ((LM_DEBUG,
+ "Calling the Receiver ..\n"));
+
+ for (CORBA::ULong i = 0;
+ i < this->number_;
+ ++i)
+ {
+ receiver->receive_call ();
+ }
+
+}
+
+void
+Sender_i::ping ( /**/)
+{
+ return;
+}