2 #ifndef JAVA_BIG_REPLY_CLIENT_TASK_H
3 #define JAVA_BIG_REPLY_CLIENT_TASK_H
4 #include /**/ "ace/pre.h"
9 #if !defined (ACE_LACKS_PRAGMA_ONCE)
11 #endif /* ACE_LACKS_PRAGMA_ONCE */
13 /// Implement a Task to run the experiments using multiple threads.
14 class Client_Task
: public ACE_Task_Base
18 Client_Task (Test::Big_Reply_ptr receiver
,
19 CORBA::Long event_count
,
20 ACE_Thread_Manager
*thr_mgr
);
22 /// Thread entry point
27 /// Reference to the test interface
28 Test::Big_Reply_var reply_gen_
;
30 /// Number of remote calls
34 #include /**/ "ace/post.h"
35 #endif /* JAVA_BIG_REPLY_CLIENT_TASK_H */