OnixS C++ FMX UST BIMP Market Data Handler 1.2.0
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 FmxUST
29 {
30 namespace MarketData
31 {
32 namespace Bimp
33 {
34 class ErrorListener;
35 class FeedEngine;
36 class WarningListener;
37 class MessageListener;
39 class ProtocolListener;
40
41 struct HandlerSettings;
42 struct ReplayOptions;
43
45 class ONIXS_FMXUST_BIMP_API Handler
46 {
47 public:
52 explicit
53 Handler (const HandlerSettings& settings);
54
56 virtual ~Handler();
57
63
69
75
81
87
93
99 void bindFeedEngine(FeedEngine& feedEngine);
100
105 void start ();
106
108 void start (const ReplayOptions& options);
109
111 void stop (bool wait);
112
115
117 void log (LogLevel::Enum logLevel, const char* logMessage, size_t length);
118
120 void log (LogLevel::Enum logLevel, const char* logMessage);
121
123 void log (LogLevel::Enum logLevel, const std::string& str);
124
126 std::string licenseExpirationDate () const;
127
129 static const char* version ();
130
131 private:
132 Handler (const Handler&); //no implementation
133 Handler& operator = (const Handler&); //no implementation
134
135 private:
136 struct Impl;
137 Impl* impl_;
138 };
139 }
140 }
141 }
142}
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.
void registerOrderBookListener(OrderBookListener *listener)
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_FMXUST_BIMP_API which affect logs replay.
Definition Replay.h:60