-
public interface PassioStatusListenerCallback interface used to receive information about the SDK's configuration process.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonPassioStatusChanged(PassioStatus status)Every time the SDK's configuration process changes a state, a new event will be emitted with the current PassioStatus. abstract UnitonCompletedDownloadingAllFiles(List<Uri> fileUris)Will be called once all of the files are downloaded. abstract UnitonCompletedDownloadingFile(Uri fileUri, Integer filesLeft)Signals the completion of the download process for a single files. abstract UnitonDownloadError(String message)If a certain file cannot be downloaded, onDownloadError will be invoked with the download error message attached. -
-
Method Detail
-
onPassioStatusChanged
abstract Unit onPassioStatusChanged(PassioStatus status)
Every time the SDK's configuration process changes a state, a new event will be emitted with the current PassioStatus.
-
onCompletedDownloadingAllFiles
abstract Unit onCompletedDownloadingAllFiles(List<Uri> fileUris)
Will be called once all of the files are downloaded. This doesn't mean that the SDK will immediately run the newly downloaded files.
-
onCompletedDownloadingFile
abstract Unit onCompletedDownloadingFile(Uri fileUri, Integer filesLeft)
Signals the completion of the download process for a single files. This method also informs how many files are still left in the download queue.
-
onDownloadError
abstract Unit onDownloadError(String message)
If a certain file cannot be downloaded, onDownloadError will be invoked with the download error message attached.
-
-
-
-