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