Package ghidra.util.task
Interface TaskListener
-
- All Known Implementing Classes:
AboutDialog,ActionDialog,AddEditDialog,AddToProgramDialog,ApplyEnumDialog,AskAddrDialog,AskDialog,AutocompletingStringConstraintEditor,BatchImportDialog,CancelMergeDialog,ChangedFilesDialog,CheckoutDialog,CheckoutDialog,CheckoutsDialog,ChooseColumnsDialog,ColumnFilterArchiveDialog,ColumnFilterDialog,DataLoadingConstraintEditor,DataTreeDialog,DataTypeSelectionDialog,DialogComponentProvider,EditFieldNameDialog,ErrLogDialog,ErrLogExpandableDialog,ExtensionTableProvider,FilterOptionsEditorDialog,FindCheckoutsDialog,FindDialog,GhidraFileChooser,GhidraScriptSelectionDialog,GoToAddressLabelDialog,ImageDialogProvider,ImporterDialog,ImporterLanguageDialog,InputDialog,InputWithChoicesDialog,KeyEntryDialog,LibraryPathsDialog,ListSelectionDialog,ListSelectionTableDialog,ManagePluginsDialog,MultiLineInputDialog,MultiLineMessageDialog,MultipleOptionsDialog,NumberInputDialog,ObjectChooserDialog,OpenVersionedFileDialog,OptionDialog,OptionsDialog,OptionsDialog,PasswordChangeDialog,PasswordDialog,PickToolDialog,PluginInstallerDialog,ProjectInfoDialog,ReadTextDialog,RecipeEditorDialog,SaveDataDialog,SaveToolConfigDialog,ScriptTaskListener,SelectChangedToolDialog,SelectColumnsDialog,SelectFromListDialog,SelectLanguageDialog,SetEquateDialog,SettingsDialog,TableChooserDialog,TaskDialog,UndoActionDialog,UserAgreementDialog,VersionControlDialog,VersionHistoryDialog,WizardManager
public interface TaskListenerListener that is notified when a thread completes its task.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtaskCancelled(Task task)Notification that the task was canceled.voidtaskCompleted(Task task)Notification that the task completed.
-
-
-
Method Detail
-
taskCompleted
void taskCompleted(Task task)
Notification that the task completed.- Parameters:
task- the task that was running and is now completed
-
taskCancelled
void taskCancelled(Task task)
Notification that the task was canceled.- Parameters:
task- the task that was running and was canceled
-
-