OnixS Eurex ETI Handler C++ library  9.20.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
13  * part of this source code or associated reference material to any other location for further
14  * reproduction or redistribution, and any amendments to this copyright notice, are expressly
15  * prohibited.
16  *
17  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
18  * the terms of the Agreement is a violation of copyright law.
19  */
20 
21 #pragma once
22 
23 #include "OnixS/Eurex/Trading/Export.h"
39 
40 namespace OnixS { namespace Eurex { namespace Trading {
41 
42 /// Order Handling listener.
44 {
45 public:
46  /// Implement this member to get notifications about DeleteAllOrderBroadcast message received.
47  virtual void onDeleteAllOrderBroadcast(const DeleteAllOrderBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
48 
49  /// Implement this member to get notifications about DeleteAllOrderNRResponse message received.
50  virtual void onDeleteAllOrderNRResponse(const DeleteAllOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
51 
52  /// Implement this member to get notifications about DeleteAllOrderQuoteEventBroadcast message received.
54  const DeleteAllOrderQuoteEventBroadcast& /*msg*/,
55  const MessageInfo& /*msgInfo*/
56  )
57  {
58  }
59 
60  /// Implement this member to get notifications about DeleteAllOrderResponse message received.
61  virtual void onDeleteAllOrderResponse(const DeleteAllOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
62 
63  /// Implement this member to get notifications about DeleteOrderBroadcast message received.
64  virtual void onDeleteOrderBroadcast(const DeleteOrderBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
65 
66  /// Implement this member to get notifications about DeleteOrderNRResponse message received.
67  virtual void onDeleteOrderNRResponse(const DeleteOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
68 
69  /// Implement this member to get notifications about DeleteOrderResponse message received.
70  virtual void onDeleteOrderResponse(const DeleteOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
71 
72  /// Implement this member to get notifications about MassOrderAck message received.
73  virtual void onMassOrderAck(const MassOrderAck& /*msg*/, const MessageInfo& /*msgInfo*/) {}
74 
75  /// Implement this member to get notifications about ModifyOrderNRResponse message received.
76  virtual void onModifyOrderNRResponse(const ModifyOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
77 
78  /// Implement this member to get notifications about ModifyOrderResponse message received.
79  virtual void onModifyOrderResponse(const ModifyOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
80 
81  /// Implement this member to get notifications about NewOrderNRResponse message received.
82  virtual void onNewOrderNRResponse(const NewOrderNRResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
83 
84  /// Implement this member to get notifications about NewOrderResponse message received.
85  virtual void onNewOrderResponse(const NewOrderResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
86 
87  /// Implement this member to get notifications about OrderExecNotification message received.
88  virtual void onOrderExecNotification(const OrderExecNotification& /*msg*/, const MessageInfo& /*msgInfo*/) {}
89 
90  /// Implement this member to get notifications about OrderExecReportBroadcast message received.
91  virtual void onOrderExecReportBroadcast(const OrderExecReportBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
92 
93  /// Implement this member to get notifications about OrderExecResponse message received.
94  virtual void onOrderExecResponse(const OrderExecResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
95 
96 protected:
97  /// Disables public <b>delete</b> operator in the interface class.
99 };
100 
101 }}} // namespace OnixS::Eurex::Trading
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:35
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.