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