For the complete documentation index, see llms.txt. This page is also available as Markdown.

MoveShutdownResult

A result for the shutdown function with force: false.

enum class MoveShutdownResult {
    SUCCESS,
    NETWORK_ERROR,
    UNINITIALIZED;
}

MoveShutdownResult

success

The shutdown completed.

networkError

Pending data in the queue could not be sent to the backend.

  • shutdown(force: false): SDK remains active and does not shut down. Retry later.

  • shutdown(force: true): SDK shuts down regardless. Pending data is lost.

uninitialized

The SDK was not setup. No user active.

Last updated