Interface IReadOnlySegment<TKey, TValue>
Assembly: ZoneTree.dll
Syntax
public interface IReadOnlySegment<TKey, TValue>
Type Parameters
Name |
Description |
TKey |
|
TValue |
|
Properties
|
Improve this Doc
View Source
IsFullyFrozen
This flag indicates that the readonly segment has completed all writes
and is guaranteed to be frozen.
Declaration
bool IsFullyFrozen { get; }
Property Value
|
Improve this Doc
View Source
Length
Declaration
Property Value
|
Improve this Doc
View Source
MaximumOpIndex
Declaration
long MaximumOpIndex { get; }
Property Value
|
Improve this Doc
View Source
SegmentId
Declaration
Property Value
Methods
|
Improve this Doc
View Source
ContainsKey(in TKey)
Declaration
bool ContainsKey(in TKey key)
Parameters
Type |
Name |
Description |
TKey |
key |
|
Returns
|
Improve this Doc
View Source
Drop()
Declaration
|
Improve this Doc
View Source
GetIndexedReader()
Declaration
IIndexedReader<TKey, TValue> GetIndexedReader()
Returns
|
Improve this Doc
View Source
GetSeekableIterator()
Declaration
ISeekableIterator<TKey, TValue> GetSeekableIterator()
Returns
|
Improve this Doc
View Source
ReleaseResources()
Declaration
|
Improve this Doc
View Source
TryGet(in TKey, out TValue)
Declaration
bool TryGet(in TKey key, out TValue value)
Parameters
Type |
Name |
Description |
TKey |
key |
|
TValue |
value |
|
Returns