OnixS Eurex ETI Handler C++ library  9.19.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 part
13  * of this source code or associated reference material to any other location for further reproduction
14  * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
15  *
16  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
17  * the terms of the Agreement is a violation of copyright law.
18  */
19 
20 #pragma once
21 
22 #include "OnixS/Eurex/Trading/Export.h"
35 
36 namespace OnixS {
37 namespace Eurex {
38 namespace Trading {
39 
40 /// Admin listener.
42 {
43 public:
44  /// Implement this member to get notifications about ForcedUserLogoutNotification message received.
45  virtual void onForcedUserLogoutNotification (const ForcedUserLogoutNotification& /*msg*/, const MessageInfo& /*msgInfo*/) {}
46 
47  /// Implement this member to get notifications about InquireEnrichmentRuleIdListResponse message received.
48  virtual void onInquireEnrichmentRuleIdListResponse (const InquireEnrichmentRuleIdListResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
49 
50  /// Implement this member to get notifications about InquireSessionListResponse message received.
51  virtual void onInquireSessionListResponse (const InquireSessionListResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
52 
53  /// Implement this member to get notifications about InquireUserResponse message received.
54  virtual void onInquireUserResponse (const InquireUserResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
55 
56  /// Implement this member to get notifications about PingResponse message received.
57  virtual void onPingResponse (const PingResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
58 
59  /// Implement this member to get notifications about Reject message received.
60  virtual void onReject (const Reject& /*msg*/, const MessageInfo& /*msgInfo*/) {}
61 
62  /// Implement this member to get notifications about RetransmitMEMessageResponse message received.
63  virtual void onRetransmitMEMessageResponse (const RetransmitMEMessageResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
64 
65  /// Implement this member to get notifications about RetransmitResponse message received.
66  virtual void onRetransmitResponse (const RetransmitResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
67 
68  /// Implement this member to get notifications about SubscribeResponse message received.
69  virtual void onSubscribeResponse (const SubscribeResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
70 
71  /// Implement this member to get notifications about UnsubscribeResponse message received.
72  virtual void onUnsubscribeResponse (const UnsubscribeResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
73 
74  /// Implement this member to get notifications about UserLoginResponse message received.
75  virtual void onUserLoginResponse (const UserLoginResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
76 
77  /// Implement this member to get notifications about UserLogoutResponse message received.
78  virtual void onUserLogoutResponse (const UserLogoutResponse& /*msg*/, const MessageInfo& /*msgInfo*/) {}
79 
80 protected:
81  /// Disables public <b>delete</b> operator in the interface class.
82  virtual ~AdminListener () {}
83 };
84 
85 }
86 }
87 }
virtual void onRetransmitMEMessageResponse(const RetransmitMEMessageResponse &, const MessageInfo &)
Implement this member to get notifications about RetransmitMEMessageResponse message received...
Definition: AdminListener.h:63
virtual void onRetransmitResponse(const RetransmitResponse &, const MessageInfo &)
Implement this member to get notifications about RetransmitResponse message received.
Definition: AdminListener.h:66
Ping Response Message.
Definition: PingResponse.h:36
Reject Message.
Definition: Reject.h:36
virtual void onInquireSessionListResponse(const InquireSessionListResponse &, const MessageInfo &)
Implement this member to get notifications about InquireSessionListResponse message received...
Definition: AdminListener.h:51
virtual void onPingResponse(const PingResponse &, const MessageInfo &)
Implement this member to get notifications about PingResponse message received.
Definition: AdminListener.h:57
virtual void onSubscribeResponse(const SubscribeResponse &, const MessageInfo &)
Implement this member to get notifications about SubscribeResponse message received.
Definition: AdminListener.h:69
virtual void onUnsubscribeResponse(const UnsubscribeResponse &, const MessageInfo &)
Implement this member to get notifications about UnsubscribeResponse message received.
Definition: AdminListener.h:72
virtual void onInquireUserResponse(const InquireUserResponse &, const MessageInfo &)
Implement this member to get notifications about InquireUserResponse message received.
Definition: AdminListener.h:54
virtual void onForcedUserLogoutNotification(const ForcedUserLogoutNotification &, const MessageInfo &)
Implement this member to get notifications about ForcedUserLogoutNotification message received...
Definition: AdminListener.h:45
virtual void onReject(const Reject &, const MessageInfo &)
Implement this member to get notifications about Reject message received.
Definition: AdminListener.h:60
virtual void onInquireEnrichmentRuleIdListResponse(const InquireEnrichmentRuleIdListResponse &, const MessageInfo &)
Implement this member to get notifications about InquireEnrichmentRuleIdListResponse message received...
Definition: AdminListener.h:48
virtual void onUserLogoutResponse(const UserLogoutResponse &, const MessageInfo &)
Implement this member to get notifications about UserLogoutResponse message received.
Definition: AdminListener.h:78
virtual ~AdminListener()
Disables public delete operator in the interface class.
Definition: AdminListener.h:82
virtual void onUserLoginResponse(const UserLoginResponse &, const MessageInfo &)
Implement this member to get notifications about UserLoginResponse message received.
Definition: AdminListener.h:75