OnixS Eurex ETI Handler C++ library  9.20.0
API documentation
TESListener.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"
33 
34 namespace OnixS { namespace Eurex { namespace Trading {
35 
36 /// TES listener.
38 {
39 public:
40  /// Implement this member to get notifications about TESApproveBroadcast message received.
41  virtual void onTESApproveBroadcast(const TESApproveBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
42 
43  /// Implement this member to get notifications about TESBroadcast message received.
44  virtual void onTESBroadcast(const TESBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
45 
46  /// Implement this member to get notifications about TESDeleteBroadcast message received.
47  virtual void onTESDeleteBroadcast(const TESDeleteBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
48 
49  /// Implement this member to get notifications about TESExecutionBroadcast message received.
50  virtual void onTESExecutionBroadcast(const TESExecutionBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
51 
52  /// Implement this member to get notifications about TESResponse message received.
53  virtual void onTESResponse(const TESResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
54 
55  /// Implement this member to get notifications about TESReversalBroadcast message received.
56  virtual void onTESReversalBroadcast(const TESReversalBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
57 
58  /// Implement this member to get notifications about TESTradeBroadcast message received.
59  virtual void onTESTradeBroadcast(const TESTradeBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
60 
61  /// Implement this member to get notifications about TESTradingSessionStatusBroadcast message received.
62  virtual void
64  {
65  }
66 
67  /// Implement this member to get notifications about TESUploadBroadcast message received.
68  virtual void onTESUploadBroadcast(const TESUploadBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
69 
70 protected:
71  /// Disables public <b>delete</b> operator in the interface class.
72  virtual ~TESListener() {}
73 };
74 
75 }}} // namespace OnixS::Eurex::Trading
virtual void onTESExecutionBroadcast(const TESExecutionBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESExecutionBroadcast message received.
Definition: TESListener.h:50
virtual void onTESApproveBroadcast(const TESApproveBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESApproveBroadcast message received.
Definition: TESListener.h:41
virtual void onTESTradeBroadcast(const TESTradeBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESTradeBroadcast message received.
Definition: TESListener.h:59
TES Response Message.
Definition: TESResponse.h:35
virtual void onTESDeleteBroadcast(const TESDeleteBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESDeleteBroadcast message received.
Definition: TESListener.h:47
virtual void onTESReversalBroadcast(const TESReversalBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESReversalBroadcast message received.
Definition: TESListener.h:56
virtual ~TESListener()
Disables public delete operator in the interface class.
Definition: TESListener.h:72
virtual void onTESTradingSessionStatusBroadcast(const TESTradingSessionStatusBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESTradingSessionStatusBroadcast message received...
Definition: TESListener.h:63
virtual void onTESUploadBroadcast(const TESUploadBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESUploadBroadcast message received.
Definition: TESListener.h:68
virtual void onTESResponse(const TESResponse &, const MessageInfo &)
Implement this member to get notifications about TESResponse message received.
Definition: TESListener.h:53
virtual void onTESBroadcast(const TESBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESBroadcast message received.
Definition: TESListener.h:44