Skip to content

2.0.0-RC20

Compare
Choose a tag to compare
@tonyofrancis tonyofrancis released this 06 May 00:14
· 657 commits to v3.0x since this release

Version 2.0.0-RC20

  • Added New FileDownloader types. Parallel and Sequential Downloaders.
    a)Parallel downloader slices a download in multiple parts allowing for faster download.
    This downloader processes the download over several background threads. Use the parallel downloader when system resources are not constrained.
    b)Sequential downloader is the default downloader, and processes a download request Sequentially.
    The download is processed on a single background thread. The Downloader is Generally Fast.
    See the Downloader.kt java docs for more information.

  • Bug fixes