summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/MT_IIOP_SSL/Client_Worker.h
blob: cb0856a959a055d89c0f2926ac5ee2b8d25cb088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58

//=============================================================================
/**
 *  @file   Client_Worker.h
 *
 *  @author Anand Krishnan
 */
//=============================================================================


#ifndef MT_SSLIOP_CLIENT_WORKER_H
#define MT_SSLIOP_CLIENT_WORKER_H
#include /**/ "ace/pre.h"
#include "ace/Task.h"

#if defined (_MSC_VER)
# pragma warning(push)
# pragma warning (disable:4250)
#endif /* _MSC_VER */

#include "testC.h"


/**
 * @class Client_Worker
 *
 * @brief Run the Client_Worker Thread
 *
 * Use the ACE_Task_Base class to run the client threads
 */
class Client_Worker : public ACE_Task_Base
{

public:
  /// ctor
  Client_Worker (Simple_Server_ptr server, int niterations);

  /// thread entry point
  virtual int svc ();

private:
  /// Validate the connection
  void validate_connection (void);

private:
  /// The server.
  Simple_Server_var server_;

  /// The number of iterations on each client thread.
  int niterations_;
};

#if defined(_MSC_VER)
# pragma warning(pop)
#endif /* _MSC_VER */

#include /**/ "ace/post.h"
#endif /* MT_SSLIOP_CLIENT_WORKER_H */