Example #1
0
 public FlowOnBuilder <T, S, A> To(A action, S to, FlowBuilder <T, S, A> .DFlowCheck check = null, bool terminate = false)
 {
     builder.To(state, action, to, check, terminate);
     return(this);
 }
Example #2
0
 internal FlowOnBuilder(Flow <T, S, A> flow, S state, FlowBuilder <T, S, A> builder)
 {
     this.flow    = flow;
     this.state   = state;
     this.builder = builder;
 }