ClientDatabaseBaseTKey, TValueRead Method

Reads data from the SortedTreeEngine with the provided read options and server side filters.

Definition

Namespace: SnapDB.Snap.Services
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public abstract TreeStream<TKey, TValue> Read(
	SortedTreeEngineReaderOptions? readerOptions,
	SeekFilterBase<TKey> keySeekFilter,
	MatchFilterBase<TKey, TValue>? keyMatchFilter
)

Parameters

readerOptions  SortedTreeEngineReaderOptions
Read options supplied to the reader. Can be null.
keySeekFilter  SeekFilterBaseTKey
A seek based filter to follow. Can be null.
keyMatchFilter  MatchFilterBaseTKey, TValue
A match based filter to follow. Can be null.

Return Value

TreeStreamTKey, TValue
A stream that will read the specified data.

Implements

IDatabaseReaderTKey, TValueRead(SortedTreeEngineReaderOptions, SeekFilterBaseTKey, MatchFilterBaseTKey, TValue)

See Also