SortedTreeNodeBaseTKey, TValueAppendSequentialStream Method
Requests the insertion of the current stream into the tree. Sequential insertion can only occur while the stream
is in order and entirely past the end of the tree.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected abstract void AppendSequentialStream(
InsertStreamHelper<TKey, TValue> stream,
out bool isFull
)
Protected MustOverride Sub AppendSequentialStream (
stream As InsertStreamHelper(Of TKey, TValue),
<OutAttribute> ByRef isFull As Boolean
)
protected:
virtual void AppendSequentialStream(
InsertStreamHelper<TKey, TValue>^ stream,
[OutAttribute] bool% isFull
) abstract
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.