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