* Replay a recording through the processor
(
recording: ChunkRecording,
options?: StreamProcessorOptions,
)
| 2233 | * Replay a recording through the processor |
| 2234 | */ |
| 2235 | static async replay( |
| 2236 | recording: ChunkRecording, |
| 2237 | options?: StreamProcessorOptions, |
| 2238 | ): Promise<ProcessorResult> { |
| 2239 | const processor = new StreamProcessor(options) |
| 2240 | return processor.process(createReplayStream(recording)) |
| 2241 | } |
| 2242 | } |
| 2243 | |
| 2244 | /** |
no test coverage detected