Automerge Repo - v2.3.0-alpha.0
    Preparing search index...

    Possible internal states for a DocHandle

    type HandleState = {
        DELETED: "deleted";
        IDLE: "idle";
        LOADING: "loading";
        READY: "ready";
        REQUESTING: "requesting";
        UNAVAILABLE: "unavailable";
        UNLOADED: "unloaded";
    }
    Index

    Properties

    DELETED: "deleted"

    The document has been deleted from the repo

    IDLE: "idle"

    The handle has been created but not yet loaded or requested

    LOADING: "loading"

    We are waiting for storage to finish loading

    READY: "ready"

    The document is available

    REQUESTING: "requesting"

    We are waiting for someone in the network to respond to a sync request

    UNAVAILABLE: "unavailable"

    The document was not available in storage or from any connected peers

    UNLOADED: "unloaded"

    The document has been unloaded from the handle, to free memory usage