1 // This may look like C, but it's really -*- C++ -*-
2 // ===================================================================
6 * @author Balachandran Natarajan <bala@cs.wustl.edu>
8 // ===================================================================
10 #ifndef TAO_TESTS_ONEWAYS_INVOKING_TWOWAYS_SENDER_I_H
11 #define TAO_TESTS_ONEWAYS_INVOKING_TWOWAYS_SENDER_I_H
12 #include /**/ "ace/pre.h"
16 /// Implement the Test::Sender interface
18 * Implements the oneway call send_ready_message. This in turn calls
19 * the receiver with two way invocations..
23 : public virtual POA_Test::Sender
27 Sender_i (CORBA::ORB_ptr orb
,
31 virtual ~Sender_i (void);
33 // = The skeleton methods
34 virtual void active_objects (CORBA::Short ao
);
36 virtual void send_ready_message (Test::Receiver_ptr receiver
);
38 virtual void ping (void);
40 virtual void shutdown (void);
46 /// Number of invocations to be made on the receiver
49 /// Number of active objects who are trying to connect
50 CORBA::Short active_objects_
;
53 #include /**/ "ace/post.h"
54 #endif /*TAO_TESTS_ONEWAYS_INVOKING_TWOWAYS_SENDER_I_H*/