Esempio n. 1
0
 private void _Timer_TimeOut(IQTimer timer, IQHsm hsm, IQEvent ev)
 {
     AsyncDispatchFront(hsm, ev);
 }
Esempio n. 2
0
 public QEventManagerBase(IQTimer timer)
 {
     _Timer          = timer;
     _Timer.TimeOut += new QTimeoutHandler(_Timer_TimeOut);
 }
 public QSingleHsmEventManager(IQTimer timer)
     : base(timer)
 {
 }
 private void _Timer_TimeOut(IQTimer timer, IQHsm hsm, IQEvent ev)
 {
     AsyncDispatchFront (hsm, ev);
 }
 public QEventManagerBase(IQTimer timer)
 {
     _Timer = timer;
     _Timer.TimeOut += new QTimeoutHandler(_Timer_TimeOut);
 }
Esempio n. 6
0
 public QMultiHsmEventManager(IQTimer timer)
     : base(timer)
 {
 }
Esempio n. 7
0
 public QSingleHsmEventManager(IQTimer timer)
     : base(timer)
 {
 }