public interface AIProgressCallback
Modifier and Type | Method and Description |
---|---|
void |
execute(AIContext context,
java.lang.Integer numStepsCompleted,
java.lang.Integer estimatedNumTotalSteps,
AIProgressMessage... newMessages)
Callback called with progress information about an ongoing AI process.
|
void execute(AIContext context, java.lang.Integer numStepsCompleted, java.lang.Integer estimatedNumTotalSteps, AIProgressMessage... newMessages)
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.