SortedTreeEngineReaderBaseExtensionMethodsReadSingleValueTKey, TValue Method
Reads a single value from the sorted tree based on the provided timestamp and point ID.
Namespace: SnapDB.Snap.Services.ReaderAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public:
[ExtensionAttribute]
generic<typename TKey, typename TValue>
where TKey : gcnew(), TimestampPointIDBase<TKey>
where TValue : gcnew(), SnapTypeBase<TValue>
static TreeStream<TKey, TValue>^ ReadSingleValue(
IDatabaseReader<TKey, TValue>^ reader,
unsigned long long timestamp,
unsigned long long pointId
)
JavaScript does not support generic types or methods.
- reader IDatabaseReaderTKey, TValue
- The database reader.
- timestamp UInt64
- The timestamp for the desired value.
- pointId UInt64
- The point ID for the desired value.
- TKey
- The type of keys in the sorted tree.
- TValue
- The type of values in the sorted tree.
TreeStreamTKey,
TValueA
TreeStreamTKey, TValue containing the single value found.In Visual Basic and C#, you can call this method as an instance method on any object of type
IDatabaseReaderTKey,
TValue. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).