WaterfallStep Interface

public interface WaterfallStep

A interface definition of a Waterfall step. This is implemented by application code.

Method Summary

Modifier and Type Method and Description
abstract java.util.concurrent.CompletableFuture<DialogTurnResult> waterfallStep(WaterfallStepContext stepContext)

A interface definition of a Waterfall step.

Method Details

waterfallStep

public abstract CompletableFuture waterfallStep(WaterfallStepContext stepContext)

A interface definition of a Waterfall step. This is implemented by application code.

Parameters:

stepContext - The WaterfallStepContext for this waterfall dialog.

Returns:

A CompletableFuture of DialogTurnResult representing the asynchronous operation.

Applies to