Tasks.await not working for FirebaseStorage
I am downloading multiple files using FirebaseStorage. The task to download the files is inside a WHILE loop. The WHILE loop is inside another FOR loop. The problem is that I want the WHILE loop to move forward only when all downloads are complete. I tried using Tasks.await(task) but it doesn't seem to work. Could you guys help me with that?
For (DataSnapshot ds: datasnapshot.getChildren()){
...
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl().addOnCompleteListener(new OnCompleteListener<Uri>() {
@Override
public void onComplete(@NonNull Task<Uri> task) {
if (task.isSuccessful()) {
...
});
try {
Tasks.await(task);
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
i[0]++;
}
}
I also tried using i[0]++ inside the storage task, but the loop just freezes.
java android firebase
add a comment |
I am downloading multiple files using FirebaseStorage. The task to download the files is inside a WHILE loop. The WHILE loop is inside another FOR loop. The problem is that I want the WHILE loop to move forward only when all downloads are complete. I tried using Tasks.await(task) but it doesn't seem to work. Could you guys help me with that?
For (DataSnapshot ds: datasnapshot.getChildren()){
...
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl().addOnCompleteListener(new OnCompleteListener<Uri>() {
@Override
public void onComplete(@NonNull Task<Uri> task) {
if (task.isSuccessful()) {
...
});
try {
Tasks.await(task);
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
i[0]++;
}
}
I also tried using i[0]++ inside the storage task, but the loop just freezes.
java android firebase
add a comment |
I am downloading multiple files using FirebaseStorage. The task to download the files is inside a WHILE loop. The WHILE loop is inside another FOR loop. The problem is that I want the WHILE loop to move forward only when all downloads are complete. I tried using Tasks.await(task) but it doesn't seem to work. Could you guys help me with that?
For (DataSnapshot ds: datasnapshot.getChildren()){
...
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl().addOnCompleteListener(new OnCompleteListener<Uri>() {
@Override
public void onComplete(@NonNull Task<Uri> task) {
if (task.isSuccessful()) {
...
});
try {
Tasks.await(task);
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
i[0]++;
}
}
I also tried using i[0]++ inside the storage task, but the loop just freezes.
java android firebase
I am downloading multiple files using FirebaseStorage. The task to download the files is inside a WHILE loop. The WHILE loop is inside another FOR loop. The problem is that I want the WHILE loop to move forward only when all downloads are complete. I tried using Tasks.await(task) but it doesn't seem to work. Could you guys help me with that?
For (DataSnapshot ds: datasnapshot.getChildren()){
...
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl().addOnCompleteListener(new OnCompleteListener<Uri>() {
@Override
public void onComplete(@NonNull Task<Uri> task) {
if (task.isSuccessful()) {
...
});
try {
Tasks.await(task);
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
i[0]++;
}
}
I also tried using i[0]++ inside the storage task, but the loop just freezes.
java android firebase
java android firebase
asked Jan 19 at 16:27
Gabriel LuanGabriel Luan
33
33
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Calling Task.await()
on Android is a recipe for problems, as even if it works, it will actually block the main thread. Are you sure you're not looking for Task.whenAllComplete()
, which returns a Task
that completes when all getDownloadUrl
tasks complete.
Implementing it would look something like this:
List<Task<Uri>> downloadUrlTasks = new LinkedList<Task<Uri>>();
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl();
downloadUrlTasks.add(task);
i[0]++;
}
try {
Tasks.whenAllComplete(downloadUrlTasks).addOnCompleteListener(new OnCompleteListener<List<Task<Uri>>() {
@Override
public void onComplete(@NonNull List<Task<Uri>> tasks) {
// All tasks have completed, now you can get all download URLs by looping over the tasks
}
});
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
Even simpler: if you only want to process the download URLs if all of them were successfully gotten from the server, you can use Tasks. whenAllSuccess
:
Tasks.whenAllSuccess(downloadUrlTasks).addOnSuccessListener(new OnSuccessListener<List<Uri>() {
@Override
public void onSuccess(@NonNull List<Uri> uris) {
// All tasks have succeeded, the uris list contains all download URLs
}
});
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54269110%2ftasks-await-not-working-for-firebasestorage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Calling Task.await()
on Android is a recipe for problems, as even if it works, it will actually block the main thread. Are you sure you're not looking for Task.whenAllComplete()
, which returns a Task
that completes when all getDownloadUrl
tasks complete.
Implementing it would look something like this:
List<Task<Uri>> downloadUrlTasks = new LinkedList<Task<Uri>>();
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl();
downloadUrlTasks.add(task);
i[0]++;
}
try {
Tasks.whenAllComplete(downloadUrlTasks).addOnCompleteListener(new OnCompleteListener<List<Task<Uri>>() {
@Override
public void onComplete(@NonNull List<Task<Uri>> tasks) {
// All tasks have completed, now you can get all download URLs by looping over the tasks
}
});
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
Even simpler: if you only want to process the download URLs if all of them were successfully gotten from the server, you can use Tasks. whenAllSuccess
:
Tasks.whenAllSuccess(downloadUrlTasks).addOnSuccessListener(new OnSuccessListener<List<Uri>() {
@Override
public void onSuccess(@NonNull List<Uri> uris) {
// All tasks have succeeded, the uris list contains all download URLs
}
});
add a comment |
Calling Task.await()
on Android is a recipe for problems, as even if it works, it will actually block the main thread. Are you sure you're not looking for Task.whenAllComplete()
, which returns a Task
that completes when all getDownloadUrl
tasks complete.
Implementing it would look something like this:
List<Task<Uri>> downloadUrlTasks = new LinkedList<Task<Uri>>();
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl();
downloadUrlTasks.add(task);
i[0]++;
}
try {
Tasks.whenAllComplete(downloadUrlTasks).addOnCompleteListener(new OnCompleteListener<List<Task<Uri>>() {
@Override
public void onComplete(@NonNull List<Task<Uri>> tasks) {
// All tasks have completed, now you can get all download URLs by looping over the tasks
}
});
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
Even simpler: if you only want to process the download URLs if all of them were successfully gotten from the server, you can use Tasks. whenAllSuccess
:
Tasks.whenAllSuccess(downloadUrlTasks).addOnSuccessListener(new OnSuccessListener<List<Uri>() {
@Override
public void onSuccess(@NonNull List<Uri> uris) {
// All tasks have succeeded, the uris list contains all download URLs
}
});
add a comment |
Calling Task.await()
on Android is a recipe for problems, as even if it works, it will actually block the main thread. Are you sure you're not looking for Task.whenAllComplete()
, which returns a Task
that completes when all getDownloadUrl
tasks complete.
Implementing it would look something like this:
List<Task<Uri>> downloadUrlTasks = new LinkedList<Task<Uri>>();
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl();
downloadUrlTasks.add(task);
i[0]++;
}
try {
Tasks.whenAllComplete(downloadUrlTasks).addOnCompleteListener(new OnCompleteListener<List<Task<Uri>>() {
@Override
public void onComplete(@NonNull List<Task<Uri>> tasks) {
// All tasks have completed, now you can get all download URLs by looping over the tasks
}
});
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
Even simpler: if you only want to process the download URLs if all of them were successfully gotten from the server, you can use Tasks. whenAllSuccess
:
Tasks.whenAllSuccess(downloadUrlTasks).addOnSuccessListener(new OnSuccessListener<List<Uri>() {
@Override
public void onSuccess(@NonNull List<Uri> uris) {
// All tasks have succeeded, the uris list contains all download URLs
}
});
Calling Task.await()
on Android is a recipe for problems, as even if it works, it will actually block the main thread. Are you sure you're not looking for Task.whenAllComplete()
, which returns a Task
that completes when all getDownloadUrl
tasks complete.
Implementing it would look something like this:
List<Task<Uri>> downloadUrlTasks = new LinkedList<Task<Uri>>();
while (i[0] < imgs.length) {
Task<Uri> task = mStorageReference.child(uid).child("notes").child(imgname).getDownloadUrl();
downloadUrlTasks.add(task);
i[0]++;
}
try {
Tasks.whenAllComplete(downloadUrlTasks).addOnCompleteListener(new OnCompleteListener<List<Task<Uri>>() {
@Override
public void onComplete(@NonNull List<Task<Uri>> tasks) {
// All tasks have completed, now you can get all download URLs by looping over the tasks
}
});
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
Even simpler: if you only want to process the download URLs if all of them were successfully gotten from the server, you can use Tasks. whenAllSuccess
:
Tasks.whenAllSuccess(downloadUrlTasks).addOnSuccessListener(new OnSuccessListener<List<Uri>() {
@Override
public void onSuccess(@NonNull List<Uri> uris) {
// All tasks have succeeded, the uris list contains all download URLs
}
});
answered Jan 20 at 1:21
Frank van PuffelenFrank van Puffelen
233k29380407
233k29380407
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54269110%2ftasks-await-not-working-for-firebasestorage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown