akiles-cordova
    Preparing search index...

    Interface ActionCallback

    Callback used by the action method.

    interface ActionCallback {
        onBluetoothError?(e: AkilesError): void;
        onBluetoothStatus?(status: ActionBluetoothStatus): void;
        onBluetoothStatusProgress?(percent: number): void;
        onBluetoothSuccess?(): void;
        onError(e: AkilesError): void;
        onInternetError?(e: AkilesError): void;
        onInternetStatus?(status: ActionInternetStatus): void;
        onInternetSuccess?(): void;
        onSuccess(): void;
    }
    Index

    Methods

    • Called when the operation fails via the Bluetooth method.

      Parameters

      Returns void

    • Called when there's a status update for the Bluetooth method.

      Parameters

      Returns void

    • Called when there's progress for the Bluetooth method.

      Parameters

      • percent: number

      Returns void

    • Called when the operation succeeds via the Bluetooth method.

      Returns void

    • Called when the operation fails.

      Parameters

      Returns void

    • Called when the operation fails via the internet method.

      Parameters

      Returns void

    • Called when there's a status update for the internet method.

      Parameters

      Returns void

    • Called when the operation succeeds via the internet method.

      Returns void

    • Called when the action operation succeeds.

      Returns void