FixedSizeNodeTKey, TValueAppendSequentialStream Method
Appends a sequential stream of key-value pairs to the node.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override void AppendSequentialStream(
InsertStreamHelper<TKey, TValue> stream,
out bool isFull
)
Protected Overrides Sub AppendSequentialStream (
stream As InsertStreamHelper(Of TKey, TValue),
<OutAttribute> ByRef isFull As Boolean
)
protected:
virtual void AppendSequentialStream(
InsertStreamHelper<TKey, TValue>^ stream,
[OutAttribute] bool% isFull
) override
function AppendSequentialStream(stream, 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.
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.