Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. /**
  2. * This class is a manager for downloads
  3. */
  4. interface AppDownloadManager {
  5. /**
  6. * Adds the download of a file to the Queue
  7. *
  8. * @param uri the uri of the file to download
  9. */
  10. fun addToDownloadQueue(uri: Uri)
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement