public FlowBuilderTo(Flow flow, CreatedInstances createdInstances, IState sourceState, IState targetState) { this.flow = flow; this.createdInstances = createdInstances; this.sourceState = sourceState; this.targetState = targetState; }
public StartViaBuilder(Flow flow, CreatedInstances createdInstances, IState state) { if (state == null) { throw new ArgumentNullException(nameof(state)); } this.flow = flow; this.createdInstances = createdInstances; this.state = state; }
public FlowBuilderFrom(Flow flow, CreatedInstances createdInstances, IState sourceState) { this.flow = flow; this.createdInstances = createdInstances; this.sourceState = sourceState; }
public FlowBuilderStart(Flow flow, CreatedInstances createdInstances) { this.flow = flow; this.createdInstances = createdInstances; }