blob: b24d59eed49823a4ceacbeac63a848a0843c6780 (
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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file Shutdown.h
*
* $Id$
*
* @author Carlos O'Ryan (coryan@cs.wustl.edu)
*/
//=============================================================================
#ifndef EC_SHUTDOWN_H
#define EC_SHUTDOWN_H
#include "Driver.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class EC_Shutdown
*
* @brief Test the EC shutdown features
*
* The EC must inform its suppliers and consumers on the event of
* its destruction.
* This test exercises that feature of the EC.
*/
class EC_Shutdown : public EC_Driver
{
public:
/// Constructor
EC_Shutdown (void);
// = The EC_Driver methods
/// Don't run the suppliers just create the EC and then destroy it.
void execute_test (void);
/// Don't dump the EC_Driver results, they are meaningless.
void dump_results (void);
/// One of the consumers in the test has been disconnected from the EC
virtual void consumer_disconnect (void* consumer_cookie);
/// One of the suppliers in the test has been disconnected from the EC
virtual void supplier_disconnect (void* supplier_cookie);
private:
/// Number of consumer and supplier disconnect messages.
int consumer_disconnects_;
int supplier_disconnects_;
};
#endif /* EC_SHUTDOWN_H */
|