OnixS C++ Eurex T7 Market and Reference Data (EMDI, MDI, RDI, EOBI) Handlers  16.1.0
API documentation
Advanced Programming

Inner Contents

 Affecting Packet Gap Detection
 
 Low Latency Best Practices
 
 Hardware timestamps
 

Detailed Description

This section provides information about more advanced development techniques supported by the Handler.

Thread affinity

FeedEngine provides an ability to set affinity mask for threads. For example, OnixS::Eurex::MarketData::FeedEngineSettings::threadAffinity method can be used to run FeedEngine's threads on the particular processor(s).

Warnings Concept

Miscellaneous non-critical issues may occur while the Handler's instance is being executed. The Handler processes such matters on its own; thus no special handling is required in that case. However, sometimes it is reasonable to be notified about such events. For this purpose, the Handler represents OnixS::Eurex::MarketData::WarningListener class and invokes its OnixS::Eurex::MarketData::WarningListener::onWarning member each time a non-critical issue occurs.

Controlling Logging in the Handler

The Handler logs all significant aspects of its execution. The log files are stored in the directory specified by the OnixS::Eurex::MarketData::HandlerSettings::logDirectory member value. Logging includes network data received and processed by the Handler and, of course, errors occurred at the execution time.

Since the Handler outputs logging data into regular files, this affects its performance and sometimes requires significant system resources, like space on the hard drive. The Handler exposes several parameters which allow adjusting certain kinds of logging and thus reducing the system load and increasing general performance.

The following table describes logging-related parameters exposed by the OnixS::Eurex::MarketData::HandlerSettings structure:

Settings Member Default value Description
logLevel OnixS::Eurex::MarketData::LogLevel::Info Specifies whether the Handler must output informational messages about its state as well as which kind of information must be put into the log. For more information, please, take a look at description of OnixS::Eurex::MarketData::LogLevel enumeration entries.
logSettings OnixS::Eurex::MarketData::LogSettings::Default If the logging is activated, this member specifies which additional data must be put into the log. For more information, please, take a look at description of OnixS::Eurex::MarketData::LogSettings enumeration entries.

Activating Logging Example

The following example demonstrates how to set up the logging at maximum level :

settings.logLevel = LogLevel::Debug;
settings.logDirectory = "./logs";
// Log messages will be stored in the file, as well as received binary packets and full state of updated order books.
settings.logSettings = LogSettings::TraceToFile | LogSettings::LogPackets | LogSettings::LogBooks;