FixedSizeNodeScannerTKey, TValueInternalPeek Method

Peeks at the next key-value pair in the internal byte buffer without advancing the read pointer.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override void InternalPeek(
	TKey key,
	TValue value
)

Parameters

key  TKey
The key to read the value into.
value  TValue
The value to read from the buffer.

Remarks

This method reads the key and value of the next key-value pair in the internal byte buffer. It deserializes the key and value without changing the state of the read pointer or index. The method is used for inspecting the next key-value pair in the buffer without consuming it.

See Also