OnixS C++ LSE GTP Market Data Handler 1.0.6
API documentation
Loading...
Searching...
No Matches
Handler.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
25
26namespace OnixS
27{
28 namespace LSE
29 {
30 namespace MarketData
31 {
32 namespace GTP
33 {
34 class ErrorListener;
35 class FeedEngine;
36 class WarningListener;
37 class MessageListener;
38 class ProtocolListener;
39
40 struct HandlerSettings;
41 struct ReplayOptions;
42
44 class ONIXS_LSE_GTP_API Handler
45 {
46 public:
51 explicit
52 Handler (const HandlerSettings& settings);
53
55 virtual ~Handler();
56
62
68
74
80
86
92 void bindFeedEngine(FeedEngine& feedEngine);
93
98 void start ();
99
101 void start (const ReplayOptions& options);
102
104 void stop (bool wait);
105
108
110 void log (LogLevel::Enum logLevel, const char* logMessage, size_t length);
111
113 void log (LogLevel::Enum logLevel, const char* logMessage);
114
116 void log (LogLevel::Enum logLevel, const std::string& str);
117
119 std::string licenseExpirationDate () const;
120
122 static const char* version ();
123
124 private:
125 Handler (const Handler&); //no implementation
126 Handler& operator = (const Handler&); //no implementation
127
128 private:
129 struct Impl;
130 Impl* impl_;
131 };
132 }
133 }
134 }
135}
136
137
138
139
The Feed Engine machinery.
Definition FeedEngine.h:105
void registerWarningListener(WarningListener *listener)
void registerHandlerStateListener(HandlerStateListener *listener)
void stop(bool wait)
Stop handler.
void registerErrorListener(ErrorListener *listener)
void log(LogLevel::Enum logLevel, const std::string &str)
Logs the given user-level message to the handler log.
std::string licenseExpirationDate() const
Returns the license expiration date.
void log(LogLevel::Enum logLevel, const char *logMessage, size_t length)
Logs the given user-level message to the handler log.
void registerProtocolListener(ProtocolListener *listener)
Handler(const HandlerSettings &settings)
void bindFeedEngine(FeedEngine &feedEngine)
static const char * version()
Returns Handler's version.
void start(const ReplayOptions &options)
Starts replaying previously logged data.
HandlerState::Enum state() const
Returns handler state.
virtual ~Handler()
Finalizes the Handler.
void registerMessageListener(MessageListener *listener)
void log(LogLevel::Enum logLevel, const char *logMessage)
Logs the given user-level message to the handler log.
Enum
Defines the state that the handler is in.
Defines ONIXS_LSE_GTP_API which affect logs replay.
Definition Replay.h:60