Interface RealtimeReconciledCache<TFeature>Experimental

A renderer-neutral, identity-keyed feature cache kept in sync by reconciliation results.

interface RealtimeReconciledCache<TFeature> {
    disposed: boolean;
    apply(result: RealtimeReconciliationResult<TFeature>): RealtimeReconciledCacheSnapshot<TFeature>;
    dispose(): void;
    snapshot(): RealtimeReconciledCacheSnapshot<TFeature>;
}

Type Parameters

  • TFeature = unknown

Properties

Methods

Properties

disposed: boolean

Methods