LarryHsiao/Vesta

View on GitHub
src/main/java/com/silverhetch/vesta/downloads/DownloadService.kt

Summary

Maintainability
A
0 mins
Test Coverage
package com.silverhetch.vesta.downloads

import java.io.File

/**
 * Download uris by uri.
 */
interface DownloadService {
    /**
     * Initialize threading and related resources
     */
    fun start(onDone: (downloadedFile: File) -> Unit)

    /**
     * Stop threading and release related resources
     */
    fun stop()
}