Skip to content

Commit

Permalink
Colin's feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind committed Nov 9, 2024
1 parent 0ccdb38 commit bc36b11
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions format/Barrage.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ enum BarrageMessageType : byte {
None = 0,

/// enum values 1 - 3 are reserved for future use
UNUSED_1 = 1,
UNUSED_2 = 2,
UNUSED_3 = 3,

/// for subscription parsing/management (aka DoPut, DoExchange)
BarrageSerializationOptions = 4,
Expand Down Expand Up @@ -85,7 +88,7 @@ table BarrageSubscriptionOptions {
///
/// Note: The server is unable to indicate when truncation occurs. To detect truncation request one more element than
/// the maximum number you wish to display.
preview_list_length_limit: int = 0;
preview_list_length_limit: long = 0;
}

/// Describes the subscription the client would like to acquire.
Expand Down Expand Up @@ -137,7 +140,7 @@ table BarrageSnapshotOptions {
///
/// Note: The server is unable to indicate when truncation occurs. To detect truncation request one more element than
/// the maximum number you wish to display.
preview_list_length_limit: int = 0;
preview_list_length_limit: long = 0;
}

/// Describes the snapshot the client would like to acquire.
Expand Down

0 comments on commit bc36b11

Please sign in to comment.