1 // ===================================================================
5 * @author Balachandran Natarajan <bala@cs.wustl.edu>
7 // ===================================================================
9 #ifndef TAO_TESTS_ONEWAYS_INVOKING_TWOWAYS_SENDER_I_H
10 #define TAO_TESTS_ONEWAYS_INVOKING_TWOWAYS_SENDER_I_H
11 #include /**/ "ace/pre.h"
15 /// Implement the Test::Sender interface
17 * Implements the oneway call send_ready_message. This in turn calls
18 * the receiver with two way invocations..
22 : public virtual POA_Test::Sender
26 Sender_i (CORBA::ORB_ptr orb
,
32 // = The skeleton methods
33 virtual void active_objects (CORBA::Short ao
);
35 virtual void send_ready_message (Test::Receiver_ptr receiver
);
39 virtual void shutdown ();
45 /// Number of invocations to be made on the receiver
48 /// Number of active objects who are trying to connect
49 CORBA::Short active_objects_
;
52 #include /**/ "ace/post.h"
53 #endif /*TAO_TESTS_ONEWAYS_INVOKING_TWOWAYS_SENDER_I_H*/