Ejemplo n.º 1
0
 /// <summary>
 /// Requeues a message to be executed at the end of the frame.
 /// </summary>
 public void RequeueMessage(ref MessageWrapper inWrapper, MessengerImpl inTarget)
 {
     m_MessageQueue.Add(new MessageWrapper(inWrapper, inTarget));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Queues a message to be executed at the end of the frame.
 /// </summary>
 public void QueueMessage(ref MessageWrapper inWrapper)
 {
     m_MessageQueue.Add(inWrapper);
 }