StreamingClientDatabaseTKey, TValueRead Method

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

Definition

Namespace: SnapDB.Snap.Services.Net
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public override 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 filer 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