Package ghidra.util.timer
Interface GTimerMonitor
-
public interface GTimerMonitorMonitor object returned from a GTimer.schedule() call
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancancel()Cancels the scheduled runnable associated with this GTimerMonitor if it has not already run.booleandidRun()Return true if the scheduled runnable has completed.booleanwasCancelled()Return true if the scheduled runnable was cancelled before it had a chance to run.
-
-
-
Method Detail
-
cancel
boolean cancel()
Cancels the scheduled runnable associated with this GTimerMonitor if it has not already run.- Returns:
- true if the scheduled runnable was cancelled before it had a chance to execute.
-
didRun
boolean didRun()
Return true if the scheduled runnable has completed.- Returns:
- true if the scheduled runnable has completed.
-
wasCancelled
boolean wasCancelled()
Return true if the scheduled runnable was cancelled before it had a chance to run.- Returns:
-
-