Under normal flow, Handler logs all important aspects of its execution onto file system. Log files include also original market data processed by the Handler. This information is usually saved for analysis of non-standard situations which may occur during use of the Handler. However, it also can be used to reproduce normal Handler's behavior for a certain period of time.
Once Handler was executed with logging enabled, it's possible to use log files for further replay. First of all, logs must be backed up (copied to another location) or Handler's configuration must be updated to use another directory for new logs. This is because current implementation of the Handler doesn't support replay from the same folder in which new logs will be stored.
Market data replay can be done with the help of start member. It accepts instance of OnixS::eSpeed::MarketData::Itch::ReplayOptions class containing list of logs to be replayed.
Collection of log files can be either manually assigned or fulfilled from provided folder.
Alternatively, it's possible manually define list of log files to be replayed. Manually manipulating list of log files allows replaying log files whose names differ from names used by the Handler.
From listener callbacks perspective, there's no difference whether Handler processes market from the network or from log files.
Sample application demonstrating Log Replay feature can be found in samples/Backtesting subfolder of library distributive package.