OnixS C++ Euronext Optiq MDG Handler 1.3.3
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 Euronext
29 {
30 namespace MarketData
31 {
32 namespace OptiqMdg
33 {
34 class ErrorListener;
35 class FeedEngine;
36 class WarningListener;
37 class MessageListener;
38
39 struct HandlerSettings;
40 struct ReplayOptions;
41
43 class ONIXS_EURONEXT_OPTIQMDG_API Handler
44 {
45 public:
50 explicit
51 Handler (const HandlerSettings& settings, const std::string& = ONIXS_EURONEXT_OPTIQMDG_COMPILER_INFO);
52
54 virtual ~Handler();
55
61
67
73
79
85 void bindFeedEngine(FeedEngine& feedEngine);
86
91 void start ();
92
94 void start (const ReplayOptions& options);
95
97 void stop (bool wait);
98
101
103 void log (LogLevel::Enum logLevel, const char* logMessage, size_t length);
104
106 void log (LogLevel::Enum logLevel, const char* logMessage);
107
109 void log (LogLevel::Enum logLevel, const std::string& str);
110
112 std::string licenseExpirationDate () const;
113
115 static const char* version ();
116
117 private:
118 Handler (const Handler&); //no implementation
119 Handler& operator = (const Handler&); //no implementation
120
121 private:
122 struct Impl;
123 Impl* impl_;
124 };
125 }
126 }
127 }
128}
#define ONIXS_EURONEXT_OPTIQMDG_COMPILER_INFO
Definition Compiler.h:36
Defines an interface through which the Handler notifies subscribers about errors occurred while proce...
void registerWarningListener(WarningListener *listener)
Assigns listener for warnings occurred while executing handler.
void registerHandlerStateListener(HandlerStateListener *listener)
Assigns listener for state change events occurred while executing handler.
void registerErrorListener(ErrorListener *listener)
Assigns listener for errors occurred while executing handler.
void log(LogLevel::Enum logLevel, const std::string &str)
Logs the given user-level message to the handler log.
Handler(const HandlerSettings &settings, const std::string &=("Unknown"))
Performs instance initialization.
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 bindFeedEngine(FeedEngine &feedEngine)
Binds Feed Engine to the Handler.
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)
Assigns listener to receive notification when Optiq MDG messages are received while executing handler...
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_EURONEXT_OPTIQMDG_API which affect logs replay.
Definition Replay.h:60