OnixS Eurex ETI Handler C++ library 9.25.0
API documentation
Loading...
Searching...
No Matches
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
34namespace OnixS { namespace Eurex { namespace Trading {
35
38{
39public:
41 virtual void onTESApproveBroadcast(const TESApproveBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
42
44 virtual void onTESBroadcast(const TESBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
45
47 virtual void onTESDeleteBroadcast(const TESDeleteBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
48
50 virtual void onTESExecutionBroadcast(const TESExecutionBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
51
53 virtual void onTESResponse(const TESResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
54
56 virtual void onTESReversalBroadcast(const TESReversalBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
57
59 virtual void onTESTradeBroadcast(const TESTradeBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
60
64 const MessageInfo& /*msgInfo*/
65 )
66 {
67 }
68
70 virtual void onTESUploadBroadcast(const TESUploadBroadcast& /*msg*/, const MessageInfo& /*msgInfo*/) {}
71
72protected:
74 virtual ~TESListener() {}
75};
76
77}}} // namespace OnixS::Eurex::Trading
virtual void onTESTradeBroadcast(const TESTradeBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESTradeBroadcast message received.
Definition TESListener.h:59
virtual void onTESUploadBroadcast(const TESUploadBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESUploadBroadcast message received.
Definition TESListener.h:70
virtual void onTESTradingSessionStatusBroadcast(const TESTradingSessionStatusBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESTradingSessionStatusBroadcast message received.
Definition TESListener.h:62
virtual void onTESBroadcast(const TESBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESBroadcast message received.
Definition TESListener.h:44
virtual void onTESResponse(const TESResponse &, const MessageInfo &)
Implement this member to get notifications about TESResponse message received.
Definition TESListener.h:53
virtual ~TESListener()
Disables public delete operator in the interface class.
Definition TESListener.h:74
virtual void onTESReversalBroadcast(const TESReversalBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESReversalBroadcast message received.
Definition TESListener.h:56
virtual void onTESApproveBroadcast(const TESApproveBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESApproveBroadcast message received.
Definition TESListener.h:41
virtual void onTESExecutionBroadcast(const TESExecutionBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESExecutionBroadcast message received.
Definition TESListener.h:50
virtual void onTESDeleteBroadcast(const TESDeleteBroadcast &, const MessageInfo &)
Implement this member to get notifications about TESDeleteBroadcast message received.
Definition TESListener.h:47