@photostructure/sqlite
    Preparing search index...

    Interface Session

    interface Session {
        "[dispose]"(): void;
        changeset(): Uint8Array;
        close(): void;
        patchset(): Uint8Array;
    }
    Index
    • Close the session and release its resources. Repeated disposal is a no-op.

      Returns void

    • Generate a changeset containing all changes recorded by the session.

      Returns Uint8Array

      A Uint8Array containing the changeset data.

    • Close the session and release its resources.

      Returns void

    • Generate a patchset containing all changes recorded by the session.

      Returns Uint8Array

      A Uint8Array containing the patchset data.