turnOnMediaDownload

@CheckReturnValue
abstract fun turnOnMediaDownload(): Completable

Initiates the download of all media files (pictures or videos, depending on the MediaType) available on the remote device.

If you are looking to only download all media items, and then turnOffMediaDownload again, check downloadMedia.

This internally switches to a com.swarovskioptik.comm.definition.ConnectionType.WIFI connection, downloads all media files (pictures or videos, depending on the MediaType) and stays connected via com.swarovskioptik.comm.definition.ConnectionType.WIFI. This means also, that all media files (pictures or videos, depending on the MediaType) created on the remote device during that time will automatically be downloaded instantly.

Call turnOffMediaDownload to disable the com.swarovskioptik.comm.definition.ConnectionType.WIFI connection and stop that behavior again.

Scheduler: The returned Completable will operate on the IO Scheduler.

Return

a Completable which completes when the action has been initiated successfully.

See also