Package com.smartgwt.client.callbacks
Interface AIProgressCallback
public interface AIProgressCallback
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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 benull
or an empty array, if, for example, only thenumStepsCompleted
is being updated.
-