GithubHelp home page GithubHelp logo

okdownloader's Introduction

OkDownloader

This is a very simple multi-task file downloader for android。

feature:

1 You can start or pause any task at will. (Whether it is a serial or parallel download)

2 Files can be downloaded at breakpoints.(No additional use of sqlite to record download information)

3 Incomplete download files may exist with the downloading extension

中文文档

Getting Started

Step 1. Add the JitPack repository to your build file

allprojects { repositories { ... maven { url 'https://jitpack.io' } } }

Step 2. Add the dependency

dependencies { implementation 'com.github.jiangyingjun:OkDownloader:1.0.1' }

User Manual

1.Build Download Task

RealDownloadTask.Builder()
 //File Network Address
.downloadUrl(url)
//Download file storage directory
.localPath(path)  
 //Custom Task ID
.setTag(tag)   
//Task monitoring @param notifyInUI (true:Callback to main thread。false:Callback to task execution thread) #Task callback execution thread#
.listener(false,object :OnDownloadListener{ 
            override fun onStart(task: DownloadTask) {
            }

            override fun onProcess(task: DownloadTask?, process: Long, total: Long) {
            }

            override fun onPause(task: DownloadTask) {
            }

            override fun onComplete(task: DownloadTask?) {
	    //Completed downloading files
                task?.downloadFile()
            }

            override fun onError(task: DownloadTask?, error: Exception) {
            }
        })
.build()

2.Start downloading

//param isSerial #Is the download task serial。default :false(parallel downloading) #

OkDownloader.instance.start(true)

3.pause downloading

OkDownloader.instance.pause()

4.Queue for all tasks

//In this queue. You can operate a specific task to start or pause

OkDownloader.instance.getRunnableList()

for example

 OkDownloader.instance.getRunnableList().forEach { innerRunnable ->
                        if (innerRunnable.taskId() == tag) {
                            Log.e("jyj-->", "operation task tag=${innerRunnable.taskTag()}")
                            //innerRunnable.taskStatus() #The status of the task#
                            if (innerRunnable.taskStatus() == DownloadTaskStatus.RUNNING) {
                                //Pause the task
                                innerRunnable.pause()
                            }  else {
                                //Let the task begin
                                innerRunnable.start()
                            }
                            return@forEach
                        }
                    }

5.Other configurations

  //Callback message interval (in milliseconds). Default: 50
  
  OkDownloader.instance.setGlobalInterval(50)

  //Number of task error retries. Default 3 times
  
  OkDownloader.instance.setRetryTimes(3)

Specific usage examples

For more complete usage examples, please read demo

okdownloader's People

Contributors

jiangyingjun avatar

Stargazers

Coderfy avatar thank_classmate avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.