Loading [MathJax]/extensions/tex2jax.js
OnixS BME SENAF Handler C++ library  2.3.0
API documentation
MarketPublicationListener.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>
46 
47 namespace OnixS { namespace Senaf { namespace MarketData {
48 
49 /// \brief Defines the interface through which the Handler
50 /// notifies subscribers about Market Publication Messages.
51 class ONIXS_BME_SENAF_EXPORT MarketPublicationListener
52 {
53 public:
54  /// Is called once Market Image Recovery (012) Message received.
55  ///
56  /// \param msg Market Image Recovery (012) Message.
57  /// \param msgInfo information about this particular message.
58  virtual void onMarketImageRecovery(const MarketImageRecovery& msg, const MessageInfo& msgInfo) = 0;
59 
60  /// Is called once Market Session Start-Up (022) Message received.
61  ///
62  /// \param msg Market Session Start-Up (022) Message.
63  /// \param msgInfo information about this particular message.
64  virtual void onMarketSessionStartUp(const MarketSessionStartUp& msg, const MessageInfo& msgInfo) = 0;
65 
66  /// Is called once Market Session End (020) Message received.
67  ///
68  /// \param msg Market Session End (020) Message.
69  /// \param msgInfo information about this particular message.
70  virtual void onMarketSessionEnd(const MarketSessionEnd& msg, const MessageInfo& msgInfo) = 0;
71 
72  /// Is called once Buy / Sell (002) Involved Message received.
73  ///
74  /// \param msg Buy / Sell (002) Involved Message.
75  /// \param msgInfo information about this particular message.
76  virtual void onBuySellInvolved(const BuySellInvolved& msg, const MessageInfo& msgInfo) = 0;
77 
78  /// Is called once Buy / Sell (003) Not Involved Message received.
79  ///
80  /// \param msg Buy / Sell (003) Not Involved Message.
81  /// \param msgInfo information about this particular message.
82  virtual void onBuySellNotInvolved(const BuySellNotInvolved& msg, const MessageInfo& msgInfo) = 0;
83 
84  /// Is called once Bid / Ask Opening a New Level (006) Involved Message
85  /// received.
86  ///
87  /// \param msg Bid / Ask Opening a New Level (006) Involved Message.
88  /// \param msgInfo information about this particular message.
89  virtual void onBidAskNewLevelInvolved(const BidAskNewLevelInvolved& msg, const MessageInfo& msgInfo) = 0;
90 
91  /// Is called once Bid / Ask Opening a New Level (007) Not Involved Message
92  /// received.
93  ///
94  /// \param msg Bid / Ask Opening a New Level (007) Not Involved Message.
95  /// \param msgInfo information about this particular message.
96  virtual void onBidAskNewLevelNotInvolved(const BidAskNewLevelNotInvolved& msg, const MessageInfo& msgInfo) = 0;
97 
98  /// Is called once Bid / Ask Existing Level (006) Involved Message received.
99  ///
100  /// \param msg Bid / Ask Existing Level (006) Involved Message.
101  /// \param msgInfo information about this particular message.
102  virtual void onBidAskExistingLevelInvolved(const BidAskExistingLevelInvolved& msg, const MessageInfo& msgInfo) = 0;
103 
104  /// Is called once Bid / Ask Existing Level (009) Not Involved Message
105  /// received.
106  ///
107  /// \param msg Bid / Ask Existing Level (009) Not Involved Message.
108  /// \param msgInfo information about this particular message.
109  virtual void onBidAskExistingLevelNotInvolved(
111  const MessageInfo& msgInfo
112  ) = 0;
113 
114  /// Is called once Position Modification (010) Involved Message received.
115  ///
116  /// \param msg Position Modification (010) Involved Message.
117  /// \param msgInfo information about this particular message.
118  virtual void onPositionModificationInvolved(
119  const PositionModificationInvolved& msg,
120  const MessageInfo& msgInfo
121  ) = 0;
122 
123  /// Is called once Position Modification (011) Not Involved Message received.
124  ///
125  /// \param msg Position Modification (011) Not Involved Message.
126  /// \param msgInfo information about this particular message.
127  virtual void onPositionModificationNotInvolved(
129  const MessageInfo& msgInfo
130  ) = 0;
131 
132  /// Is called once Position Cancellation (001) Message received.
133  ///
134  /// \param msg Position Cancellation (001) Message.
135  /// \param msgInfo information about this particular message.
136  virtual void onPositionCancellation(const PositionCancellation& msg, const MessageInfo& msgInfo) = 0;
137 
138  /// Is called once Combined Bid / Ask (015) Involved Message received.
139  ///
140  /// \param msg Combined Bid / Ask (015) Involved Message.
141  /// \param msgInfo information about this particular message.
142  virtual void onCombinedBidAskInvolved(const CombinedBidAskInvolved& msg, const MessageInfo& msgInfo) = 0;
143 
144  /// Is called once Combined Bid / Ask (016) Not Involved Message received.
145  ///
146  /// \param msg Combined Bid / Ask (016) Not Involved Message.
147  /// \param msgInfo information about this particular message.
148  virtual void onCombinedBidAskNotInvolved(const CombinedBidAskNotInvolved& msg, const MessageInfo& msgInfo) = 0;
149 
150  /// Is called once Switching Bid / Ask (023) Involved Message received.
151  ///
152  /// \param msg Switching Bid / Ask (023) Involved Message.
153  /// \param msgInfo information about this particular message.
154  virtual void onSwitchingBidAskInvolved(const SwitchingBidAskInvolved& msg, const MessageInfo& msgInfo) = 0;
155 
156  /// Is called once Switching Bid / Ask (024) Not Involved Message received.
157  ///
158  /// \param msg Switching Bid / Ask (024) Not Involved Message.
159  /// \param msgInfo information about this particular message.
160  virtual void onSwitchingBidAskNotInvolved(const SwitchingBidAskNotInvolved& msg, const MessageInfo& msgInfo) = 0;
161 
162  /// Is called once Operation Confirmation (004) Involved Message received.
163  ///
164  /// \param msg Operation Confirmation (004) Involved Message.
165  /// \param msgInfo information about this particular message.
166  virtual void onOperationConfirmationInvolved(
168  const MessageInfo& msgInfo
169  ) = 0;
170 
171  /// Is called once Operation Confirmation (005) Not involved Message received.
172  ///
173  /// \param msg Operation Confirmation (005) Not involved Message.
174  /// \param msgInfo information about this particular message.
175  virtual void onOperationConfirmationNotInvolved(
177  const MessageInfo& msgInfo
178  ) = 0;
179 
180  /// Is called once Trading Session Start-Up (013) Message received.
181  ///
182  /// \param msg Trading Session Start-Up (013) Message.
183  /// \param msgInfo information about this particular message.
184  virtual void onTradingSessionStartUp(const TradingSessionStartUp& msg, const MessageInfo& msgInfo) = 0;
185 
186  /// Is called once Trading Session End (014) Message received.
187  ///
188  /// \param msg Trading Session End (014) Message.
189  /// \param msgInfo information about this particular message.
190  virtual void onTradingSessionEnd(const TradingSessionEnd& msg, const MessageInfo& msgInfo) = 0;
191 
192 protected:
194 };
195 
196 }}} // namespace OnixS::Senaf::MarketData
Buy / Sell Exchange Notified to Involved Members.
Combined Bid / Ask Publication Message. Involved.
Switching Bid / Ask Publication Message. Involved.
Switching Bid / Ask Publication Message. Not Involved.
Defines the interface through which the Handler notifies subscribers about Market Publication Message...
Bid / Ask Opening New Level. Not Involved.
Combined Bid / Ask Publication Message. Not Involved.
Buy / Sell Exchange Notified to Members. Not Involved.
Bid / Ask Opening New Level. Involved.