summaryrefslogtreecommitdiff
path: root/examples/QOS/Simple/QoS_Signal_Handler.h
blob: b2d4a0f40fa7eeefe60f80e3a306b0d59552e29b (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
/* -*- C++ -*- */
// $Id$

// =====================================================================
//
// = LIBRARY
//    ACE_wrappers/examples/QOS
//
// = FILENAME
//    QoS_Signal_Handler.h
//
// = AUTHOR
//    Vishal Kachroo <vishal@cs.wustl.edu>
//
// =====================================================================

#ifndef QOS_SIGNAL_HANDLER_H
#define QOS_SIGNAL_HANDLER_H

#include "ace/Event_Handler.h"
#include "ace/QoS/QoS_Session.h"

class QoS_Signal_Handler : public ACE_Event_Handler
{
  // TITLE
  //   This class Handles the SIGINT signal through the Reactor.
  //   Useful to gracefully release QoS sessions.

public:

  QoS_Signal_Handler (ACE_QoS_Session *qos_session);
  // constructor.

  int handle_signal(int signum, siginfo_t*,ucontext_t*);
  // Override this method to implement graceful shutdown.

private:

  ACE_QoS_Session *qos_session_;
  // Session to be gracefully shutdown.

};

#endif /* QOS_SIGNAL_HANDLER_H */