rmapi-js
    Preparing search index...

    Interface LwwValue<T>

    a last-writer-wins value, a value stamped with a timestamp id

    interface LwwValue<T> {
        timestamp: CrdtId;
        value: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    timestamp: CrdtId

    the id of the writer that last set this value

    value: T

    the stored value