This commit is contained in:
Sergey Baranchenkov 2017-11-15 10:10:00 -08:00 коммит произвёл GitHub
Родитель 1ef1b85aeb
Коммит 5b1df3df6a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,10 +1,10 @@
# Playback Samples
The class **Playback** delivers the events from one or more trace/log files or real-time feeds in order of occurence.
The class **Playback** delivers the events from one or more trace/log files or real-time feeds in order of occurrence.
Internally:
* Event occurence records are transformed from their raw format (e.g. native structures) to C# objects
* Event occurrence records are transformed from their raw format (e.g. native structures) to C# objects
* Multiple inputs (files or real-time feeds) are merged on timestamp
This [set of samples](Program.cs) illustrates what Playback does as component, without using much LINQ.
@ -19,7 +19,7 @@ In this mode,
Samples:
* Parsing single event type occurences (GetObservable)
* Parsing single event type occurrences (GetObservable)
* Virtual Time as per event timestamps (VirtualTime)
* Parsing begin/end events (Get2Observables)
* Formatting the above events (Format2)