tus / tus-java-client

The tus client for Java.
https://tus.io
MIT License
213 stars 88 forks source link

Tus#67 persistent url store #68

Open dr-chase-g3ka1 opened 2 years ago

dr-chase-g3ka1 commented 2 years ago

This is the pull request for issue #67. There is a TusURLPersistentStore which can continue uploads after restarting the computer. After successful upload finished, the URL will get deleted. Tested on Windows, and worked.

Usage: TusURLPersistentStore persistentStore = new TusURLPersistentStore(); client.enableResuming(persistentStore); ....