Esempio n. 1
0
 public bool Dequeue(out StateNotice stateNotice)
 {
     if (notices.Count == 0)
     {
         stateNotice = null;
         return(false);
     }
     stateNotice = notices.Dequeue();
     return(true);
 }
Esempio n. 2
0
 public virtual bool OnNotice(StateNotice stateNotice)
 {
     // Implement in extended class
     return(false);
 }
Esempio n. 3
0
 public void Trigger(StateNotice stateNotice)
 {
     notices.Enqueue(stateNotice);
 }
Esempio n. 4
0
 public void TriggerNotice(StateNotice stateNotice)
 {
     noticeQueue.Trigger(stateNotice);
 }