- All Superinterfaces:
Plan<C>
- All Known Implementing Classes:
BarrierPlan, ConditionalPlan, DynamicNestedPlan, ForEachPlan, ForEachSlicePlan, IfElsePlan, MapContextPlan, NestedPlan, PlanMap, RaisePlan, RunnablePlan, SimplePlan
public interface SimplyComposedPlan<C>
extends Plan<C>
-
Method Summary
Create a new plan that executes this plan and the given plan in parallel.
Create a new plan that executes this plan, then the given plan.
-
Method Details
-
then
Description copied from interface: Plan
Create a new plan that executes this plan, then the given plan.
- Specified by:
then in interface Plan<C>
- Parameters:
plan - The plan to execute after this plan.
- Returns:
- The composed plan.
-
and
Description copied from interface: Plan
Create a new plan that executes this plan and the given plan in parallel.
- Specified by:
and in interface Plan<C>
- Parameters:
plan - The plan to execute in parallel with this plan.
- Returns:
- The composed plan.