Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work manager task cancellation listener #245

Open
sujan-lama opened this issue Feb 26, 2021 · 4 comments
Open

Work manager task cancellation listener #245

sujan-lama opened this issue Feb 26, 2021 · 4 comments
Labels
android Android specific enhancement New feature or request

Comments

@sujan-lama
Copy link

I have added the Network policy in the work manager. When a worker is running, I am updating the UI to a loading state in the callback dispatcher. But when the internet is gone, the task is automatically canceled, with no callback. Any idea what can I do?

@sujan-lama sujan-lama added the bug Something isn't working label Feb 26, 2021
@ened
Copy link
Collaborator

ened commented Jun 10, 2021

In the WorkManager docs, we can see for onStopped:

This method is invoked when this Worker has been told to stop. At this point, the ListenableFuture returned by the instance of startWork() is also cancelled. This could happen due to an explicit cancellation signal by the user, or because the system has decided to preempt the task. In these cases, the results of the work will be ignored by WorkManager. All processing in this method should be lightweight - there are no contractual guarantees about which thread will invoke this call, so this should not be a long-running or blocking operation.

This should be the signal to bring back to the UI. I will look how to make it available on the Dart side.

@ened ened added android Android specific enhancement New feature or request and removed bug Something isn't working labels Jun 10, 2021
@BenCherif
Copy link

any updates??

@Kuroketsu
Copy link

any updates?

@TheLastGimbus
Copy link

I have some cross-isolate communication and i need to de-register in IsolateNameServer before quitting

but when task gets cancelled, my Isolate is killed instantly (at least that's what i think is happening) and i get no chance to know about this 🤷

I know this may add some complexity - "how much timeout to give to the Dart side before killing everything", instead of just engine?.close()... but this is very important for many tasks :(

TheLastGimbus added a commit to TheLastGimbus/FreeBuddy that referenced this issue Jan 5, 2025
and DO NOT cancel all tasks but just nicely wait until they finish, since it caused more trouble (maybe because of fluttercommunity/flutter_workmanager#245 not being implemented)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
android Android specific enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

5 participants