Beispiel #1
0
 public GQHSMTimeOut(string name, DateTime dt, IQEvent ev, TimeOutType type, GQHSMAction action)
 {
     _name     = name;
     _dt       = dt;
     _event    = ev;
     _action   = action;
     _callType = GQHSMCallType.TIMEOUT_DATETIME_TYPE;
 }
Beispiel #2
0
 public GQHSMTimeOut(string name, TimeSpan duration, IQEvent ev, GQHSMAction action)
 {
     _name     = name;
     _duration = duration;
     _event    = ev;
     _action   = action;
     _callType = GQHSMCallType.TIMEOUT_TIMESPAN;
 }