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