GenericEncodedNodeTKey, TValueAppendSequentialStream Method
Requests that the current stream is inserted into the tree. Sequential insertion can only occur while the stream
is in order and is entirely past the end of the tree.
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 data to insert
- isFull Boolean
-
if returning from this function while the node is not yet full, this means the stream
can no longer be inserted sequentially and we must break out to the root and insert one at a time.