Download multiple files as zip

This commit is contained in:
eikek
2022-04-09 14:01:36 +02:00
parent e65b8de686
commit 4488291319
55 changed files with 2328 additions and 38 deletions

View File

@ -18,7 +18,8 @@ trait JobStore[F[_]] {
/** Inserts the job into the queue only, if there is no job with the same tracker-id
* running at the moment. The job id must be a new unique id.
*
* If the job has no tracker defined, it is simply inserted.
* If the job has no tracker defined, it is simply inserted. It returns `true` if the
* job was inserted.
*/
def insertIfNew(job: Job[String]): F[Boolean]