IDatabaseReaderTKey, TValue Interface

Represents a database reader interface for reading data from a SortedTreeEngine.

Definition

Namespace: SnapDB.Snap
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public interface IDatabaseReader<TKey, TValue> : IDisposable
where TKey : new(), SnapTypeBase<TKey>
where TValue : new(), SnapTypeBase<TValue>
Implements
IDisposable

Type Parameters

TKey
The type of keys in the database.
TValue
The type of values in the database.

Methods

DisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Read Reads data from the SortedTreeEngine with the provided read options and server-side filters.

See Also