FixedSizeNodeTKey, TValueAppendSequentialStream Method

Appends a sequential stream of key-value pairs to the node.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override void AppendSequentialStream(
	InsertStreamHelper<TKey, TValue> stream,
	out bool isFull
)

Parameters

stream  InsertStreamHelperTKey, TValue
The stream containing key-value pairs to append.
isFull  Boolean
A boolean indicating whether the node is full after the append operation.

Remarks

This method appends a sequential stream of key-value pairs to the node. It keeps adding pairs until the node reaches its maximum capacity. If the node becomes full, the isFull parameter is set to true; otherwise, it's set to false.

See Also