OnixS Eurex ETI Handler C++ library  9.19.0
API documentation
OrderHandlingListener.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 copyright law
5  * and international copyright treaties.
6  *
7  * Access to and use of the software is governed by the terms of the applicable ONIXS Software
8  * Services Agreement (the Agreement) and Customer end user license agreements granting
9  * a non-assignable, non-transferable and non-exclusive license to use the software
10  * for it's own data processing purposes under the terms defined in the Agreement.
11  *
12  * Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
13  * of this source code or associated reference material to any other location for further reproduction
14  * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
15  *
16  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
17  * the terms of the Agreement is a violation of copyright law.
18  */
19 
20 #pragma once
21 
22 #include "OnixS/Eurex/Trading/Export.h"
38 
39 namespace OnixS {
40 namespace Eurex {
41 namespace Trading {
42 
43 /// Order Handling listener.
45 {
46 public:
47  /// Implement this member to get notifications about DeleteAllOrderBroadcast message received.
48  virtual void onDeleteAllOrderBroadcast (const DeleteAllOrderBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
49 
50  /// Implement this member to get notifications about DeleteAllOrderNRResponse message received.
51  virtual void onDeleteAllOrderNRResponse (const DeleteAllOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
52 
53  /// Implement this member to get notifications about DeleteAllOrderQuoteEventBroadcast message received.
54  virtual void onDeleteAllOrderQuoteEventBroadcast (const DeleteAllOrderQuoteEventBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
55 
56  /// Implement this member to get notifications about DeleteAllOrderResponse message received.
57  virtual void onDeleteAllOrderResponse (const DeleteAllOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
58 
59  /// Implement this member to get notifications about DeleteOrderBroadcast message received.
60  virtual void onDeleteOrderBroadcast (const DeleteOrderBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
61 
62  /// Implement this member to get notifications about DeleteOrderNRResponse message received.
63  virtual void onDeleteOrderNRResponse (const DeleteOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
64 
65  /// Implement this member to get notifications about DeleteOrderResponse message received.
66  virtual void onDeleteOrderResponse (const DeleteOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
67 
68  /// Implement this member to get notifications about MassOrderAck message received.
69  virtual void onMassOrderAck (const MassOrderAck& /*msg*/, const MessageInfo& /*msgInfo*/) {}
70 
71  /// Implement this member to get notifications about ModifyOrderNRResponse message received.
72  virtual void onModifyOrderNRResponse (const ModifyOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
73 
74  /// Implement this member to get notifications about ModifyOrderResponse message received.
75  virtual void onModifyOrderResponse (const ModifyOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
76 
77  /// Implement this member to get notifications about NewOrderNRResponse message received.
78  virtual void onNewOrderNRResponse (const NewOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
79 
80  /// Implement this member to get notifications about NewOrderResponse message received.
81  virtual void onNewOrderResponse (const NewOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
82 
83  /// Implement this member to get notifications about OrderExecNotification message received.
84  virtual void onOrderExecNotification (const OrderExecNotification& /*msg*/, const MessageInfo& /*msgInfo*/) {}
85 
86  /// Implement this member to get notifications about OrderExecReportBroadcast message received.
87  virtual void onOrderExecReportBroadcast (const OrderExecReportBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
88 
89  /// Implement this member to get notifications about OrderExecResponse message received.
90  virtual void onOrderExecResponse (const OrderExecResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
91 
92 protected:
93  /// Disables public <b>delete</b> operator in the interface class.
94  virtual ~OrderHandlingListener () {}
95 };
96 
97 }
98 }
99 }
virtual void onDeleteOrderResponse(const DeleteOrderResponse &, const MessageInfo &)
Implement this member to get notifications about DeleteOrderResponse message received.
virtual void onModifyOrderResponse(const ModifyOrderResponse &, const MessageInfo &)
Implement this member to get notifications about ModifyOrderResponse message received.
virtual void onNewOrderResponse(const NewOrderResponse &, const MessageInfo &)
Implement this member to get notifications about NewOrderResponse message received.
virtual void onMassOrderAck(const MassOrderAck &, const MessageInfo &)
Implement this member to get notifications about MassOrderAck message received.
virtual void onDeleteOrderBroadcast(const DeleteOrderBroadcast &, const MessageInfo &)
Implement this member to get notifications about DeleteOrderBroadcast message received.
virtual ~OrderHandlingListener()
Disables public delete operator in the interface class.
virtual void onOrderExecNotification(const OrderExecNotification &, const MessageInfo &)
Implement this member to get notifications about OrderExecNotification message received.
virtual void onModifyOrderNRResponse(const ModifyOrderNRResponse &, const MessageInfo &)
Implement this member to get notifications about ModifyOrderNRResponse message received.
virtual void onNewOrderNRResponse(const NewOrderNRResponse &, const MessageInfo &)
Implement this member to get notifications about NewOrderNRResponse message received.
virtual void onDeleteOrderNRResponse(const DeleteOrderNRResponse &, const MessageInfo &)
Implement this member to get notifications about DeleteOrderNRResponse message received.
New Order Response Message.
virtual void onDeleteAllOrderBroadcast(const DeleteAllOrderBroadcast &, const MessageInfo &)
Implement this member to get notifications about DeleteAllOrderBroadcast message received.
virtual void onOrderExecResponse(const OrderExecResponse &, const MessageInfo &)
Implement this member to get notifications about OrderExecResponse message received.
Mass Order Ack Message.
Definition: MassOrderAck.h:36
virtual void onDeleteAllOrderQuoteEventBroadcast(const DeleteAllOrderQuoteEventBroadcast &, const MessageInfo &)
Implement this member to get notifications about DeleteAllOrderQuoteEventBroadcast message received...
New Order NR Response Message.
virtual void onDeleteAllOrderNRResponse(const DeleteAllOrderNRResponse &, const MessageInfo &)
Implement this member to get notifications about DeleteAllOrderNRResponse message received...
virtual void onOrderExecReportBroadcast(const OrderExecReportBroadcast &, const MessageInfo &)
Implement this member to get notifications about OrderExecReportBroadcast message received...
virtual void onDeleteAllOrderResponse(const DeleteAllOrderResponse &, const MessageInfo &)
Implement this member to get notifications about DeleteAllOrderResponse message received.