OPEN_GRID API - v1.4.0
    Preparing search index...

    Interface RegistryEntry<V>

    등록 1건을 정규화해 저장한 불변 기록. seq는 우선순위가 같을 때 등록 순서로 동점을 가르는 안정적인 기준이다.

    A normalized, immutable record of one registration. seq is the stable tiebreaker used when priorities are equal.

    1件の登録を正規化して保存した不変のレコードです。seqは優先度が同じときに登録順で同点を分ける安定した基準です。

    将一次注册规范化后保存的不可变记录。seq是优先级相同时按注册顺序判定胜负的稳定依据。

    interface RegistryEntry<V> {
        deprecated?: DeprecationInfo;
        key: string;
        origin: EntryOrigin;
        pluginId?: string;
        priority: number;
        seq: number;
        spiVersion?: string;
        value: V;
    }

    Type Parameters

    • V
    Index

    Properties

    deprecated?: DeprecationInfo
    key: string
    origin: EntryOrigin
    pluginId?: string
    priority: number
    seq: number

    이 레지스트리 안에서만 유효한, 계속 증가하는 등록 순번.

    Monotonically increasing registration sequence, local to this registry.

    このレジストリ内でのみ有効な、単調増加する登録連番。

    仅在此注册表内有效的单调递增注册序号。

    spiVersion?: string
    value: V