csharp
public record class QueueSnapshotWhat a queue looks like right now.
Fields and properties (4)
public int WaitingHow many tickets are queueing.
public int PlayersHow many people that is.
public int OpenHow many matches are formed and not yet started.
public TimeSpan LongestWaitHow long the oldest waiting ticket has been there.
Methods (1)
public QueueSnapshot(int Waiting, int Players, int Open, TimeSpan LongestWait)What a queue looks like right now.
Used by (4)
- IQueueGrainVixen.Live.Cluster
- QueueGrainVixen.Live.Orchestrator
- QueueStateVixen.Live.Orchestrator
- QueueStateTestsVixen.Live.Orchestrator.Tests