Enum SlowReaderBehavior
- Namespace
- DatabentoDotNet.Live
- Assembly
- DatabentoDotNet.Live.dll
What the gateway should do when the client stops keeping up with real time.
public enum SlowReaderBehavior
- Extension Methods
Fields
Skip = 1Drop records to bring the client back to real time. Data is lost, by design.
Warn = 0Warn, and keep sending every record. The client falls further behind.
Remarks
Port of upstream's SlowReaderBehavior (live.rs:36-42). Opt-in: when the client
sends no slow_reader_behavior= at all, the gateway applies its own default, which is
why SlowReaderBehavior is nullable rather than defaulted here.