Ejemplo n.º 1
0
 public EcWaitingforStart1State(ISaiStateContext context, EcDefenseStrategy strategy)
     : base(context, strategy)
 {
 }
Ejemplo n.º 2
0
 public SaiInvalidState(ISaiStateContext context)
     : base(context)
 {
 }
Ejemplo n.º 3
0
 public EcDisconnectedState(ISaiStateContext context, EcDefenseStrategy strategy)
     : base(context, strategy)
 {
 }
Ejemplo n.º 4
0
        protected SaiState(ISaiStateContext context)
        {
            LogUtility.Info(string.Format("{0}:Sai层新状态= {1}", context.RsspEP.ID, this.GetType().Name));

            this.Context = context;
        }
Ejemplo n.º 5
0
 protected EcState(ISaiStateContext context, EcDefenseStrategy strategy)
     : base(context)
 {
     this.DefenseStrategy = strategy;
 }
Ejemplo n.º 6
0
 public TtsWaitingforStartState(ISaiStateContext context, TtsDefenseStrategy strategy)
     : base(context, strategy)
 {
 }
Ejemplo n.º 7
0
 protected TtsState(ISaiStateContext context, TtsDefenseStrategy strategy)
     : base(context)
 {
     this.DefenseStrategy = strategy;
 }