mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Task Launcher - fixed synchronization issues
This commit is contained in:
parent
d74c392101
commit
3765dd0afe
9 changed files with 54 additions and 104 deletions
|
@ -220,28 +220,6 @@ public abstract class Task implements MonitoredRunnable {
|
|||
return isModal;
|
||||
}
|
||||
|
||||
public boolean isInterruptible() {
|
||||
return isInterruptible;
|
||||
}
|
||||
|
||||
public void setInterruptible(boolean interruptible) {
|
||||
this.isInterruptible = interruptible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if this task should be left alone to die when cancelled, as opposed to being
|
||||
* interrupted
|
||||
*
|
||||
* @return true if forgettable
|
||||
*/
|
||||
public boolean isForgettable() {
|
||||
return isForgettable;
|
||||
}
|
||||
|
||||
public void setForgettable(boolean isForgettable) {
|
||||
this.isForgettable = isForgettable;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the task listener on this task. It is a programming error to call this method more
|
||||
* than once or to call this method if a listener was passed into the constructor of this class.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue