akiles-cordova
    Preparing search index...

    Interface SyncCallback

    Callback used by the sync method.

    interface SyncCallback {
        onError(e: AkilesError): void;
        onStatus?(status: SyncStatus): void;
        onStatusProgress?(percent: number): void;
        onSuccess(): void;
    }
    Index

    Methods

    • Called when the operation fails.

      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.

      Returns void