blob: e09021b0da29da0f6c4700580d5d5a953fa7a04b (
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
|
//
// $Id$
//
#ifndef AMI_BUFFERING_ADMIN_H
#define AMI_BUFFERING_ADMIN_H
#include /**/ "ace/pre.h"
#include "TestS.h"
/// Implement the Test::AMI_Buffering_Admin interface
class AMI_Buffering_Admin
: public virtual POA_Test::AMI_Buffering_Admin
{
public:
/// Constructor
AMI_Buffering_Admin (CORBA::ORB_ptr orb);
// = The skeleton methods
virtual CORBA::ULong request_count (void);
virtual CORBA::ULong bytes_received_count (void);
virtual void request_received (CORBA::ULong payload_length);
virtual void flush (void);
virtual void shutdown (void);
private:
/// Use an ORB reference to shutdown the application.
CORBA::ORB_var orb_;
/// Keep track of the number of requests received
CORBA::ULong request_count_;
/// Keep track of the number of requests received
CORBA::ULong bytes_received_count_;
};
#include /**/ "ace/post.h"
#endif /* AMI_BUFFERING_H */
|