I am using org.eclipse.core.runtime.jobs.Job to execute a stored procedure that deletes data and updates the user interface to match the new data. Therefore, it is important that this work is completed even if the user closes the eclipse application.
final Job execStoredProcJob = new Job(taskName) { protected IStatus run(IProgressMonitor monitor) { monitor.beginTask(taskName,
When I close the eclipse application while Job is running, it seems to kill Job. How to shut down after a user closes an eclipse application? Is it possible?
source share