public static interface

DJIPlaybackManager.CameraFileDownloadCallback

dji.sdk.Camera.DJIPlaybackManager.CameraFileDownloadCallback

Class Overview

This callback will notify the process of downloading selected files.

Summary

Public Methods
abstract void onEnd()
Called when a file has completed downloading.
abstract void onError(Exception exception)
Called when there is an error during download.
abstract void onProgressUpdate(int progress)
Called to update the progress on downloading a file in percent.
abstract void onStart()
Called as a file is about to start downloading.

Public Methods

public abstract void onEnd ()

Called when a file has completed downloading.

public abstract void onError (Exception exception)

Called when there is an error during download.

Parameters
exception The error exception

public abstract void onProgressUpdate (int progress)

Called to update the progress on downloading a file in percent. Range is [0, 100].

Parameters
progress The progress of downloading

public abstract void onStart ()

Called as a file is about to start downloading.