Klasse Analysis
java.lang.Object
org.deidentifier.arx.gui.view.impl.common.async.Analysis
A generic interface for analyses that are performed asynchronously.
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungabstract intMay return a progress value in [0,100] or 0.abstract voidonError()Perform error handling.abstract voidonFinish()Perform finish.abstract voidPerform interrupt handling.abstract voidrun()Implement the analysis here.abstract voidstop()Called to stop the analysis.
-
Konstruktordetails
-
Analysis
public Analysis()
-
-
Methodendetails
-
getProgress
public abstract int getProgress()May return a progress value in [0,100] or 0. -
onError
public abstract void onError()Perform error handling. -
onFinish
public abstract void onFinish()Perform finish. -
onInterrupt
public abstract void onInterrupt()Perform interrupt handling. -
run
Implement the analysis here.- Löst aus:
InterruptedException
-
stop
public abstract void stop()Called to stop the analysis.
-