Module linera_views::views::bucket_queue_view
source · Expand description
The BucketQueueView
implements a queue that can push on the back and delete on the front and group data in buckets.
Structs§
- A view that supports a FIFO queue for values of type
T
. The sizeN
has to be chosen by taking into account the size of the typeT
and the basic size of a block. For example a total size of 100 bytes to 10 KB seems adequate.
Type Aliases§
- Type wrapping
QueueView
while memoizing the hash.