mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-22 16:41:46 +03:00
Compare commits
2 commits
fb2883d215
...
55d2fbd57f
Author | SHA1 | Date | |
---|---|---|---|
|
55d2fbd57f | ||
|
111d7616d0 |
2 changed files with 7 additions and 6 deletions
|
@ -130,11 +130,12 @@ protected DownloadTask sendAsync(AsyncDownloader.SizedFile file, URI baseUri, Pa
|
|||
ProgressTrackingBodyHandler<Path> bodyHandler = makeBodyHandler(targetDir.resolve(file.filePath), callback);
|
||||
CompletableFuture<HttpResponse<Path>> future = client.sendAsync(makeHttpRequest(baseUri, file.urlPath), bodyHandler);
|
||||
AtomicReference<DownloadTask> task = new AtomicReference<>(null);
|
||||
task.set(new DownloadTask(bodyHandler, future.thenApply((e) -> {
|
||||
tasks.remove(task.get());
|
||||
return e;
|
||||
})));
|
||||
task.set(new DownloadTask(bodyHandler, null /* fix NPE (future already completed) */));
|
||||
tasks.add(task.get());
|
||||
task.get().completableFuture = future.thenApply((e) -> {
|
||||
tasks.remove(task.get());
|
||||
return e;
|
||||
});
|
||||
return task.get();
|
||||
}
|
||||
|
||||
|
@ -168,7 +169,7 @@ private static class ConsumerObject {
|
|||
|
||||
public static class DownloadTask {
|
||||
public final ProgressTrackingBodyHandler<Path> bodyHandler;
|
||||
public final CompletableFuture<HttpResponse<Path>> completableFuture;
|
||||
public CompletableFuture<HttpResponse<Path>> completableFuture;
|
||||
|
||||
public DownloadTask(ProgressTrackingBodyHandler<Path> bodyHandler, CompletableFuture<HttpResponse<Path>> completableFuture) {
|
||||
this.bodyHandler = bodyHandler;
|
||||
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
|||
Subproject commit 828d2483509744aefde1b6082f5a56dc14b4e1e4
|
||||
Subproject commit ed433be234a5d6b4336a6af48194add97b0f2874
|
Loading…
Reference in a new issue