Package docking.widgets.table.threaded
Class IncrementalLoadJob<ROW_OBJECT>
java.lang.Object
ghidra.util.worker.Job
docking.widgets.table.threaded.IncrementalLoadJob<ROW_OBJECT>
- All Implemented Interfaces:
ThreadedTableModelListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidcancel()voidloadingFinished(boolean wasCancelled) Called when the table is done loading data.voidCalled when the table begins to load new data.voidCalled when the model has new data to be loaded, but has not yet started the load process.voidrun(TaskMonitor monitor) The method that gets called by the Worker when this job is selected to be run by the Worker.Methods inherited from class ghidra.util.worker.Job
getError, hasError, isCancelled, isCompleted, setCompleted, setError, setTaskMonitor
-
Method Details
-
run
Description copied from class:JobThe method that gets called by the Worker when this job is selected to be run by the Worker. -
cancel
public void cancel() -
loadPending
public void loadPending()Description copied from interface:ThreadedTableModelListenerCalled when the model has new data to be loaded, but has not yet started the load process.- Specified by:
loadPendingin interfaceThreadedTableModelListener
-
loadingStarted
public void loadingStarted()Description copied from interface:ThreadedTableModelListenerCalled when the table begins to load new data.- Specified by:
loadingStartedin interfaceThreadedTableModelListener
-
loadingFinished
public void loadingFinished(boolean wasCancelled) Description copied from interface:ThreadedTableModelListenerCalled when the table is done loading data.- Specified by:
loadingFinishedin interfaceThreadedTableModelListener- Parameters:
wasCancelled- true if the load was cancelled.
-