1 // ===================================================================
5 * @author Johnny Willemsen <jwillemsen@remedy.nl>
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
);
31 // = The skeleton methods
32 virtual void active_objects (CORBA::ULong ao
);
34 virtual void send_ready_message ();
36 CORBA::ULong
get_number_received () const;
38 CORBA::ULong
get_active_objects () const;
44 /// Number of active objects who are trying to connect
45 CORBA::ULong active_objects_
;
47 /// Number of invocations received
48 CORBA::ULong number_received_
;
51 #include /**/ "ace/post.h"
52 #endif /*TAO_TESTS_ONEWAYS_INVOKING_TWOWAYS_SENDER_I_H*/