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 Type
    Method
    Description
    void
    onProgress(int current, int total, String message)
    Called to report progress.
  • Method Details

    • onProgress

      void onProgress(int current, int total, String message)
      Called to report progress.
      Parameters:
      current - current step number
      total - total number of steps
      message - description of current operation