2 #ifndef BIG_REPLY_CLIENT_TASK_H
3 #define 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
26 /// Validate the connection
27 void validate_connection ();
30 /// Reference to the test interface
31 Test::Big_Reply_var reply_gen_
;
33 /// Number of remote calls
37 #include /**/ "ace/post.h"
38 #endif /* BIG_REPLY_CLIENT_TASK_H */