SortedTreeScannerBaseTKey, TValueReadBackwardish Method

Reads the key-value pair backwardish (in reverse order) from the tree node.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public bool ReadBackwardish(
	TKey key,
	TValue value
)

Parameters

key  TKey
The key to read.
value  TValue
The value to read.

Return Value

Boolean
true if there are more records to read; otherwise, false.

Remarks

Note: This method will read each leaf node in reverse order. However, each leaf itself will be sorted ascending, only when moving from leaf node to leave node will this occur in reverse order. Note: This functionality should be used only to inspect the contests of a file, and not be used to attempt supporting reverse readings of files.

See Also