Table of Contents

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 = 1

Drop records to bring the client back to real time. Data is lost, by design.

Warn = 0

Warn, 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.