Search Results for

    Show / Hide Table of Contents

    Interface IReadOnlySegment<TKey, TValue>

    Namespace: Tenray.ZoneTree.Segments
    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
    Type Description
    bool
    | Improve this Doc View Source

    Length

    Declaration
    long Length { get; }
    Property Value
    Type Description
    long
    | Improve this Doc View Source

    MaximumOpIndex

    Declaration
    long MaximumOpIndex { get; }
    Property Value
    Type Description
    long
    | Improve this Doc View Source

    SegmentId

    Declaration
    long SegmentId { get; }
    Property Value
    Type Description
    long

    Methods

    | Improve this Doc View Source

    ContainsKey(in TKey)

    Declaration
    bool ContainsKey(in TKey key)
    Parameters
    Type Name Description
    TKey key
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Drop()

    Declaration
    void Drop()
    | Improve this Doc View Source

    GetIndexedReader()

    Declaration
    IIndexedReader<TKey, TValue> GetIndexedReader()
    Returns
    Type Description
    IIndexedReader<TKey, TValue>
    | Improve this Doc View Source

    GetSeekableIterator()

    Declaration
    ISeekableIterator<TKey, TValue> GetSeekableIterator()
    Returns
    Type Description
    ISeekableIterator<TKey, TValue>
    | Improve this Doc View Source

    ReleaseResources()

    Declaration
    void ReleaseResources()
    | 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
    Type Description
    bool
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2022 Tenray.io