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.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected abstract void AppendSequentialStream(
	InsertStreamHelper<TKey, TValue> stream,
	out bool 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.

See Also