You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only way to abort a running or planned task is by closing the app.
It would be helpful to cancel/abort a task: Plugin Sync, Bundle Installation, etc...
The text was updated successfully, but these errors were encountered:
Implementing task cancellation on top of JavaFx Task will introduce some complexity on each task logic definition.
During task execution, frequent calls should be made to task.isCancelled() during execution (downloads, file move, ...) to handle the cancellation logic and complete the task gracefully. It means, we have to define all points in a task execution where cancellation is possible.
This cancellation won't help with a task stuck on a java or native call.
The only way to abort a running or planned task is by closing the app.
It would be helpful to cancel/abort a task: Plugin Sync, Bundle Installation, etc...
The text was updated successfully, but these errors were encountered: