FixedSizeNodeScannerTKey, TValueInternalPeek Method
Peeks at the next key-value pair in the internal byte buffer without advancing the read pointer.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override void InternalPeek(
TKey key,
TValue value
)
Protected Overrides Sub InternalPeek (
key As TKey,
value As TValue
)
protected:
virtual void InternalPeek(
TKey key,
TValue value
) override
function InternalPeek(key, value);
Parameters
- key TKey
- The key to read the value into.
- value TValue
- The value to read from the buffer.
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.