com.supermap.realspace
Interface DownloadedListener
-
Deprecated.This class is used to receive listeners that download completion events.This listener is registered in the DownloadManager object. After inheriting this interface, the user can customize the method after the download succeeds or fails.
public interface DownloadedListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method and Description void
downloaded(boolean isSuccess)
Deprecated.Download the completion event.
-
-
-
Method Detail
-
downloaded
void downloaded(boolean isSuccess)
Deprecated.Download the completion event.The user can customize the logic after the download succeeds or fails according to whether the download is successful.
- Parameters:
isSuccess
- Whether the download is successful, the download is successful when the value is True, otherwise the download fails.
-
-