OnixS BME SENAF Handler C++ library  2.3.0
API documentation
MarketControlListener.h
Go to the documentation of this file.
1 /*
2  * Copyright Onix Solutions Limited [OnixS]. All rights reserved.
3  *
4  * This software owned by Onix Solutions Limited [OnixS] and is protected by
5  * copyright law and international copyright treaties.
6  *
7  * Access to and use of the software is governed by the terms of the applicable
8  * ONIXS Software Services Agreement (the Agreement) and Customer end user
9  * license agreements granting a non-assignable, non-transferable and
10  * non-exclusive license to use the software for it's own data processing
11  * purposes under the terms defined in the Agreement.
12  *
13  * Except as otherwise granted within the terms of the Agreement, copying or
14  * reproduction of any part of this source code or associated reference material
15  * to any other location for further reproduction or redistribution, and any
16  * amendments to this copyright notice, are expressly prohibited.
17  *
18  * Any reproduction or redistribution for sale or hiring of the Software not in
19  * accordance with the terms of the Agreement is a violation of copyright law.
20  */
21 
22 #pragma once
23 
24 #include <OnixS/Senaf/MarketData/Export.h>
42 
43 namespace OnixS { namespace Senaf { namespace MarketData {
44 
45 /// \brief Defines the interface through which the Handler
46 /// notifies subscribers about Market Control Messages.
47 class ONIXS_BME_SENAF_EXPORT MarketControlListener
48 {
49 public:
50  /// Is called once Generic Low Priority (100) Message received.
51  ///
52  /// \param msg Generic Low Priority (100) Message.
53  /// \param msgInfo information about this particular message.
54  virtual void onGenericLowPriorityMessage(const GenericLowPriorityMessage& msg, const MessageInfo& msgInfo) = 0;
55 
56  /// Is called once Generic Medium Priority (101) Message received.
57  ///
58  /// \param msg Generic Medium Priority (101) Message.
59  /// \param msgInfo information about this particular message.
60  virtual void onGenericMediumPriorityMessage(
62  const MessageInfo& msgInfo
63  ) = 0;
64 
65  /// Is called once Generic High Priority (102) Message received.
66  ///
67  /// \param msg Generic High Priority (102) Message.
68  /// \param msgInfo information about this particular message.
69  virtual void onGenericHighPriorityMessage(const GenericHighPriorityMessage& msg, const MessageInfo& msgInfo) = 0;
70 
71  /// Is called once Market Request Error (103) Message received.
72  ///
73  /// \param msg Market Request Error (103) Message.
74  /// \param msgInfo information about this particular message.
75  virtual void onMarketRequestError(const MarketRequestError& msg, const MessageInfo& msgInfo) = 0;
76 
77  /// Is called once Terminal Session Start-up Response (104) Message received.
78  ///
79  /// \param msg Terminal Session Start-up Response (104) Message.
80  /// \param msgInfo information about this particular message.
81  virtual void onTerminalSessionStartUpResponse(
83  const MessageInfo& msgInfo
84  ) = 0;
85 
86  /// Is called once General Error (105) Message received.
87  ///
88  /// \param msg General Error (105) Message.
89  /// \param msgInfo information about this particular message.
90  virtual void onGeneralError(const GeneralError& msg, const MessageInfo& msgInfo) = 0;
91 
92  /// Is called once Recovery Start (110) Message received.
93  ///
94  /// \param msg Recovery Start (110) Message.
95  /// \param msgInfo information about this particular message.
96  virtual void onRecoveryStart(const RecoveryStart& msg, const MessageInfo& msgInfo) = 0;
97 
98  /// Is called once Recovery End (111) Message received.
99  ///
100  /// \param msg Recovery End (111) Message.
101  /// \param msgInfo information about this particular message.
102  virtual void onRecoveryEnd(const RecoveryEnd& msg, const MessageInfo& msgInfo) = 0;
103 
104  /// Is called once Market Image Recovery Start (113) Message received.
105  ///
106  /// \param msg Market Image Recovery Start (113) Message.
107  /// \param msgInfo information about this particular message.
108  virtual void onMarketImageRecoveryStart(const MarketImageRecoveryStart& msg, const MessageInfo& msgInfo) = 0;
109 
110  /// Is called once Market Image Recovery End (114) Message received.
111  ///
112  /// \param msg Market Image Recovery End (114) Message.
113  /// \param msgInfo information about this particular message.
114  virtual void onMarketImageRecoveryEnd(const MarketImageRecoveryEnd& msg, const MessageInfo& msgInfo) = 0;
115 
116  /// Is called once System Problems Notification (130) Message received.
117  ///
118  /// \param msg System Problems Notification (130) Message.
119  /// \param msgInfo information about this particular message.
120  virtual void onSystemProblemsNotification(const SystemProblemsNotification& msg, const MessageInfo& msgInfo) = 0;
121 
122  /// Is called once Information Group Start (133) Message received.
123  ///
124  /// \param msg Information Group Start (133) Message.
125  /// \param msgInfo information about this particular message.
126  virtual void onInformationGroupStart(const InformationGroupStart& msg, const MessageInfo& msgInfo) = 0;
127 
128  /// Is called once Information Group End (134) Message received.
129  ///
130  /// \param msg Information Group End (134) Message.
131  /// \param msgInfo information about this particular message.
132  virtual void onInformationGroupEnd(const InformationGroupEnd& msg, const MessageInfo& msgInfo) = 0;
133 
134  /// Is called once Short Recovery Start (146) Message received.
135  ///
136  /// \param msg Short Recovery Start (146) Message.
137  /// \param msgInfo information about this particular message.
138  virtual void onShortRecoveryStart(const ShortRecoveryStart& msg, const MessageInfo& msgInfo) = 0;
139 
140  /// Is called once Short Recovery End (147) Message received.
141  ///
142  /// \param msg Short Recovery End (147) Message.
143  /// \param msgInfo information about this particular message.
144  virtual void onShortRecoveryEnd(const ShortRecoveryEnd& msg, const MessageInfo& msgInfo) = 0;
145 
146  /// Is called once Gap Fill (160) Message received.
147  ///
148  /// \param msg Gap Fill (160) Message.
149  /// \param msgInfo information about this particular message.
150  virtual void onGapFill(const GapFill& msg, const MessageInfo& msgInfo) = 0;
151 
152 protected:
154 };
155 
156 }}} // namespace OnixS::Senaf::MarketData
Defines the interface through which the Handler notifies subscribers about Market Control Messages...