Exemple #1
0
 private void _Timer_TimeOut(IQTimer timer, IQHsm hsm, IQEvent ev)
 {
     AsyncDispatchFront(hsm, ev);
 }
Exemple #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);
 }
 public QMultiHsmEventManager(IQTimer timer)
     : base(timer)
 {
 }
Exemple #7
0
 public QSingleHsmEventManager(IQTimer timer)
     : base(timer)
 {
 }