2 #ifndef JAVA_BIG_REQUEST_PAYLOAD_RECEIVER_H
3 #define JAVA_BIG_REQUEST_PAYLOAD_RECEIVER_H
4 #include /**/ "ace/pre.h"
8 /// Implement the Test::Payload_Receiver interface
10 * Simply print count how many bytes were received.
12 class Payload_Receiver
13 : public virtual POA_Test::Payload_Receiver
17 Payload_Receiver (CORBA::ORB_ptr orb
);
19 // = The skeleton methods
20 virtual void more_data (const Test::Payload
&payload
);
22 virtual void shutdown ();
24 int get_count () const;
31 #include /**/ "ace/post.h"
32 #endif /* JAVA_BIG_REQUEST_PAYLOAD_RECEIVER_H */