Class BroadcastOptions.ReplayOptions
Options for replaying events in broadcast configurations.
public class BroadcastOptions.ReplayOptions
- Inheritance
-
BroadcastOptions.ReplayOptions
- Inherited Members
Properties
Limit
Specifies the maximum number of events to be replayed during broadcast. When set to null, there is no limit to the number of events replayed.
[JsonProperty("limit", NullValueHandling = NullValueHandling.Ignore)]
public int? Limit { get; set; }
Property Value
- int?
Since
Specifies the starting point in time, in milliseconds since the Unix epoch, from which events should be replayed in the broadcast configuration.
[JsonProperty("since")]
public long Since { get; set; }