summaryrefslogtreecommitdiff
path: root/TAO/examples/Event_Comm/supplier.h
blob: 7c25d0ef9bcb63af315d5ce6daece1c317eaaac0 (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
// -*- C++ -*-

//=============================================================================
/**
 *  @file    supplier.h
 *
 *  This class implements  driver for the Publish/Subscribe example
 *
 *
 */
//=============================================================================



/**
 * @class Supplier
 *
 * @brief Supplier driver for the TAO Publish/Subscribe example.
 *
 * This class starts up the <Supplier_Input_Handler> and
 * <Notifier_Handler> objects.
 */
class Supplier : public ACE_Event_Handler, public ShutdownCallback
{
public:
  // Initialization and Termination methods.
  /// Constructor.
  Supplier (void);

  /// Destructor.
  ~Supplier (void);

  /// Initialization method. returns 0 on success, -1 on error.
  int init (int argc, ACE_TCHAR *argv[]);

  /// Execute the supplier.
  void run (void);

  /// Shutdown the application.
  virtual void close (void);

private:
  /// Handle shutdown signals.
  virtual int handle_signal (int signum,
                             siginfo_t *,
                             ucontext_t *);

  /// Handler for keyboard input.
  Supplier_Input_Handler ih_;

  /// The notifier handler.
  Notifier_Handler nh_;
};