OnixS Eurex ETI Handler C++ library  9.23.0
API documentation
AdminListener.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"
38 
39 namespace OnixS { namespace Eurex { namespace Trading {
40 
41 /// Admin listener.
43 {
44 public:
45  /// Implement this member to get notifications about ForcedUserLogoutNotification message received.
47  const ForcedUserLogoutNotification& /*msg*/,
48  const MessageInfo& /*msgInfo*/
49  )
50  {
51  }
52 
53  /// Implement this member to get notifications about HeartbeatNotification message received.
54  virtual void onHeartbeatNotification(const HeartbeatNotification& /*msg*/, const MessageInfo& /*msgInfo*/) {}
55 
56  /// Implement this member to get notifications about InquireEnrichmentRuleIdListResponse message received.
59  const MessageInfo& /*msgInfo*/
60  )
61  {
62  }
63 
64  /// Implement this member to get notifications about InquireSessionListResponse message received.
65  virtual void onInquireSessionListResponse(const InquireSessionListResponse& /*msg*/, const MessageInfo& /*msgInfo*/)
66  {
67  }
68 
69  /// Implement this member to get notifications about InquireUserResponse message received.
70  virtual void onInquireUserResponse(const InquireUserResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
71 
72  /// Implement this member to get notifications about LogonResponse message received.
73  virtual void onLogonResponse(const LogonResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
74 
75  /// Implement this member to get notifications about PingResponse message received.
76  virtual void onPingResponse(const PingResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
77 
78  /// Implement this member to get notifications about Reject message received.
79  virtual void onReject(const Reject& /*msg*/, const MessageInfo& /*msgInfo*/) {}
80 
81  /// Implement this member to get notifications about RetransmitMEMessageResponse message received.
83  const RetransmitMEMessageResponse& /*msg*/,
84  const MessageInfo& /*msgInfo*/
85  )
86  {
87  }
88 
89  /// Implement this member to get notifications about RetransmitResponse message received.
90  virtual void onRetransmitResponse(const RetransmitResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
91 
92  /// Implement this member to get notifications about SubscribeResponse message received.
93  virtual void onSubscribeResponse(const SubscribeResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
94 
95  /// Implement this member to get notifications about UnsubscribeResponse message received.
96  virtual void onUnsubscribeResponse(const UnsubscribeResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
97 
98  /// Implement this member to get notifications about UserLoginResponse message received.
99  virtual void onUserLoginResponse(const UserLoginResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
100 
101  /// Implement this member to get notifications about UserLogoutResponse message received.
102  virtual void onUserLogoutResponse(const UserLogoutResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
103 
104 protected:
105  /// Disables public <b>delete</b> operator in the interface class.
106  virtual ~AdminListener() {}
107 };
108 
109 }}} // namespace OnixS::Eurex::Trading
Logon Response Message.
Definition: LogonResponse.h:18
virtual void onRetransmitMEMessageResponse(const RetransmitMEMessageResponse &, const MessageInfo &)
Implement this member to get notifications about RetransmitMEMessageResponse message received...
Definition: AdminListener.h:82
virtual void onRetransmitResponse(const RetransmitResponse &, const MessageInfo &)
Implement this member to get notifications about RetransmitResponse message received.
Definition: AdminListener.h:90
Ping Response Message.
Definition: PingResponse.h:35
Reject Message.
Definition: Reject.h:35
virtual void onInquireSessionListResponse(const InquireSessionListResponse &, const MessageInfo &)
Implement this member to get notifications about InquireSessionListResponse message received...
Definition: AdminListener.h:65
virtual void onLogonResponse(const LogonResponse &, const MessageInfo &)
Implement this member to get notifications about LogonResponse message received.
Definition: AdminListener.h:73
virtual void onPingResponse(const PingResponse &, const MessageInfo &)
Implement this member to get notifications about PingResponse message received.
Definition: AdminListener.h:76
virtual void onSubscribeResponse(const SubscribeResponse &, const MessageInfo &)
Implement this member to get notifications about SubscribeResponse message received.
Definition: AdminListener.h:93
virtual void onHeartbeatNotification(const HeartbeatNotification &, const MessageInfo &)
Implement this member to get notifications about HeartbeatNotification message received.
Definition: AdminListener.h:54
virtual void onUnsubscribeResponse(const UnsubscribeResponse &, const MessageInfo &)
Implement this member to get notifications about UnsubscribeResponse message received.
Definition: AdminListener.h:96
virtual void onInquireUserResponse(const InquireUserResponse &, const MessageInfo &)
Implement this member to get notifications about InquireUserResponse message received.
Definition: AdminListener.h:70
virtual void onForcedUserLogoutNotification(const ForcedUserLogoutNotification &, const MessageInfo &)
Implement this member to get notifications about ForcedUserLogoutNotification message received...
Definition: AdminListener.h:46
virtual void onReject(const Reject &, const MessageInfo &)
Implement this member to get notifications about Reject message received.
Definition: AdminListener.h:79
virtual void onInquireEnrichmentRuleIdListResponse(const InquireEnrichmentRuleIdListResponse &, const MessageInfo &)
Implement this member to get notifications about InquireEnrichmentRuleIdListResponse message received...
Definition: AdminListener.h:57
virtual void onUserLogoutResponse(const UserLogoutResponse &, const MessageInfo &)
Implement this member to get notifications about UserLogoutResponse message received.
virtual ~AdminListener()
Disables public delete operator in the interface class.
virtual void onUserLoginResponse(const UserLoginResponse &, const MessageInfo &)
Implement this member to get notifications about UserLoginResponse message received.
Definition: AdminListener.h:99