Exemplo n.º 1
0
 internal TransitionsListNode(StateMachineFactory <Operand, State, Eventtype, Event
                                                   > _enclosing, StateMachineFactory.ApplicableTransition <OPERAND, STATE, EVENTTYPE
                                                                                                           , EVENT> transition, StateMachineFactory.TransitionsListNode next)
 {
     this._enclosing = _enclosing;
     this.transition = transition;
     this.next       = next;
 }
Exemplo n.º 2
0
 private StateMachineFactory(Org.Apache.Hadoop.Yarn.State.StateMachineFactory <OPERAND
                                                                               , STATE, EVENTTYPE, EVENT> that, StateMachineFactory.ApplicableTransition <OPERAND
                                                                                                                                                          , STATE, EVENTTYPE, EVENT> t)
 {
     this.defaultInitialState = that.defaultInitialState;
     this.transitionsListNode = new StateMachineFactory.TransitionsListNode(this, t, that
                                                                            .transitionsListNode);
     this.optimized         = false;
     this.stateMachineTable = null;
 }