Exemple #1
0
 public void InsertEvent(BaseSocialEvent evt)
 {
     if (_history == null)
     {
         _history = new List <BaseSocialEvent>();
     }
     _history.Add(evt);
 }
 public void RegisterSocialEvent(BaseSocialEvent socialEvent)
 {
     _eventQueue.Enqueue(socialEvent);
 }