tgstation-server 6.8.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ChunkSetInfo.cs
Go to the documentation of this file.
2{
6 public abstract class ChunkSetInfo : IChunkPayloadId
7 {
9 public uint? PayloadId { get; set; }
10
14 public uint TotalChunks { get; set; }
15 }
16}
Information about a chunked bridge request.
Definition: ChunkSetInfo.cs:7
uint? PayloadId
The ID of the full request to differentiate different chunkings. Nullable to prevent default value om...
Definition: ChunkSetInfo.cs:9
uint TotalChunks
The total number of chunks in the request.
Definition: ChunkSetInfo.cs:14
Represents the payload ID of a set of chunked data.