File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
deps/rabbitmq_stream/docs Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -399,8 +399,8 @@ Deliver => Key Version SubscriptionId OsirisChunk
399399 TrailerLength => uint32
400400 BloomSize => uint8 // size of bloom filter data
401401 Reserved => unit24 // unused 3 bytes
402- BloomFilterData => [uint8] // bloom filter data (no int32 for the size of this array, the size is defined by BloomSize
403- Messages => [Message] // no int32 for the size for this array; the size is defined by NumEntries field above
402+ BloomFilterData => [uint8] // bloom filter data, the size of the array is defined by BloomSize
403+ Messages => [Message] // a continous collection of messages, the size of the array is defined by NumEntries
404404 Message => EntryTypeAndSize
405405 Data => bytes
406406```
@@ -426,8 +426,8 @@ Deliver => Key Version SubscriptionId CommittedOffset OsirisChunk
426426 TrailerLength => uint32
427427 BloomSize => uint8 // size of bloom filter data
428428 Reserved => unit24 // unused 3 bytes
429- BloomFilterData => [uint8] // bloom filter data (no int32 for the size of this array, the size is defined by BloomSize
430- Messages => [Message] // no int32 for the size for this array; the size is defined by NumEntries field above
429+ BloomFilterData => [uint8] // bloom filter data, the size of the array is defined by BloomSize
430+ Messages => [Message] // a continous collection of messages, the size of the array is defined by NumEntries
431431 Message => EntryTypeAndSize
432432 Data => bytes
433433```
You can’t perform that action at this time.
0 commit comments