Uses of Interface
dyntabs.ai.flow.FlowStep

Packages that use FlowStep
Package
Description
 
  • Uses of FlowStep in dyntabs.ai

    Methods in dyntabs.ai with parameters of type FlowStep
    Modifier and Type
    Method
    Description
    FlowBuilder.orElse(FlowStep<?> alternative)
    Attaches a fallback alternative to the most recently added step: if that step's primary work throws, this alternative is tried instead (and further orElse calls chain more alternatives, tried in order until one succeeds).
    FlowBuilder.step(String name, FlowStep<?> step)
    Appends a named step to the pipeline.
    FlowBuilder.stepIf(String name, Predicate<FlowContext> condition, FlowStep<?> step)
    Appends a step that runs only if the given condition holds at that point in the flow; otherwise the step is skipped entirely (it stores no result, so ctx.has(name) stays false for later steps).