Interface AIProgressCallback


public interface AIProgressCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(AIContext context, Integer numStepsCompleted, Integer estimatedNumTotalSteps, AIProgressMessage... newMessages)
    Callback called with progress information about an ongoing AI process.
  • Method Details

    • execute

      void execute(AIContext context, Integer numStepsCompleted, Integer estimatedNumTotalSteps, AIProgressMessage... newMessages)
      Callback called with progress information about an ongoing AI process.
      Parameters:
      context -
      numStepsCompleted -
      estimatedNumTotalSteps -
      newMessages - Any additional messages about the progress that has been made since the last invocation of the progress callback. This may be null or an empty array, if, for example, only the numStepsCompleted is being updated.