Module org.scijava.ops.flim
Package org.scijava.ops.flim
Interface FitWorker.FitEventHandler<I extends RealType<I>>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidonComplete(FitParams<I> params, FitResults results)The handler called byFitWorkers upon completion of all fits.default voidonSingleComplete(int[] pos, FitParams<I> params, FitResults results)The handler called byFitWorkers upon completion of a single fit.
-
-
-
Method Detail
-
onComplete
default void onComplete(FitParams<I> params, FitResults results)
The handler called byFitWorkers upon completion of all fits.- Parameters:
params- the paramsresults- the results
-
onSingleComplete
default void onSingleComplete(int[] pos, FitParams<I> params, FitResults results)The handler called byFitWorkers upon completion of a single fit.- Parameters:
pos- the x, y coordinate of the trans being fittedparams- the params (volatile) of the completed fitresults- the results (volatile) from the completed fit
-
-