summaryrefslogtreecommitdiff
path: root/TAO/examples/PluggableUDP/tests/Basic/UDP_Client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/PluggableUDP/tests/Basic/UDP_Client_i.h')
-rw-r--r--TAO/examples/PluggableUDP/tests/Basic/UDP_Client_i.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/TAO/examples/PluggableUDP/tests/Basic/UDP_Client_i.h b/TAO/examples/PluggableUDP/tests/Basic/UDP_Client_i.h
new file mode 100644
index 00000000000..f1b18efe785
--- /dev/null
+++ b/TAO/examples/PluggableUDP/tests/Basic/UDP_Client_i.h
@@ -0,0 +1,66 @@
+// -*- C++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/examples/Simple/UDP
+//
+// = FILENAME
+// UDP_Client_i.h
+//
+// = DESCRIPTION
+// This class implements the client functionality of the UDP test.
+//
+// = AUTHOR
+// Michael Kircher <Michael.Kircher@mchp.siemens.de>
+//
+// ============================================================================
+
+#ifndef UDP_CLIENT_I_H
+#define UDP_CLIENT_I_H
+
+#include "ace/Task.h"
+#include "tao/ORB.h"
+
+#include "UDPC.h"
+
+class UDP_Client_i
+: public ACE_Task_Base
+{
+ // = TITLE
+ // UDP Client interface subclass.
+ //
+ // = DESCRIPTION
+ // This class wrapps the client functionality into one class
+ //
+public:
+ // = Initialization and termination methods.
+ UDP_Client_i (CORBA::ORB_ptr orb,
+ UDP_ptr udp,
+ UDP_ptr udpHandler,
+ ACE_UINT32 msec,
+ ACE_UINT32 iterations);
+ // Constructor
+
+ virtual ~UDP_Client_i (void);
+ // Destructor
+
+private:
+ // Runs in a separate thread.
+ virtual int svc (void );
+
+private:
+ CORBA::ORB_var orb_;
+
+ UDP_var udp_;
+
+ UDP_var udpHandler_;
+
+ ACE_UINT32 delay_;
+
+ ACE_UINT32 iterations_;
+};
+
+
+#endif /* UDP_CLIENT_I_H */