akiles-react-native
    Preparing search index...

    Interface SyncCallback

    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