3 //=============================================================================
5 * @file UDP_PerformanceClient.h
7 * This class implements the client functionality of the UDP test.
9 * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
11 //=============================================================================
14 #ifndef UDP_PERFORMANCECLIENT_H
15 #define UDP_PERFORMANCECLIENT_H
23 class UDP_PerformanceClient
24 : public ACE_Task_Base
27 // UDP Client interface subclass.
30 // This class wrapps the client functionality into one class
34 UDP_PerformanceClient (CORBA::ORB_ptr orb
,
37 ACE_UINT32 burst_messages
);
40 virtual ~UDP_PerformanceClient ();
43 // Runs in a separate thread.
53 ACE_UINT32 last_wrong_messages_
;
55 ACE_UINT32 burst_messages_
;
58 #endif /* UDP_PERFORMANCECLIENT_H */