Package jadx.gui.jobs
Class CancelableBackgroundTask
- java.lang.Object
-
- jadx.gui.jobs.CancelableBackgroundTask
-
- All Implemented Interfaces:
Cancelable,IBackgroundTask
- Direct Known Subclasses:
DecompileTask,ExportTask,SearchTask
public abstract class CancelableBackgroundTask extends java.lang.Object implements IBackgroundTask
-
-
Constructor Summary
Constructors Constructor Description CancelableBackgroundTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanBeCanceled()voidcancel()booleanisCanceled()voidresetCancel()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jadx.gui.jobs.Cancelable
getCancelTimeoutMS, getShutdownTimeoutMS
-
Methods inherited from interface jadx.gui.jobs.IBackgroundTask
checkMemoryUsage, getProgressListener, getTaskProgress, getTitle, onDone, onFinish, scheduleTasks, timeLimit
-
-
-
-
Method Detail
-
isCanceled
public boolean isCanceled()
- Specified by:
isCanceledin interfaceCancelable
-
cancel
public void cancel()
- Specified by:
cancelin interfaceCancelable
-
resetCancel
public void resetCancel()
-
canBeCanceled
public boolean canBeCanceled()
- Specified by:
canBeCanceledin interfaceIBackgroundTask
-
-