Interface FlowRateOptimizer.ProgressCallback
- Enclosing class:
FlowRateOptimizer
public static interface FlowRateOptimizer.ProgressCallback
Callback interface for monitoring optimization progress.
Implement this interface to receive progress updates during lift curve generation or other long-running operations. This is useful for GUI integration or progress reporting.
- Version:
- 2.0
- Author:
- ESOL
-
Method Summary
Modifier and TypeMethodDescriptionvoidonProgress(int current, int total, String message) Called to report progress.
-
Method Details
-
onProgress
Called to report progress.- Parameters:
current- current step numbertotal- total number of stepsmessage- description of current operation
-