Пример #1
0
 public void push_updata_event(update_event _event)
 {
     lock (updata_event_list)
     {
         updata_event_list.Enqueue(_event);
     }
 }
Пример #2
0
        public void push_updata_event(update_event _event)
        {
            if (!collection_write_event_list.ContainsKey(_event.collection))
            {
                start_write(_event.collection);
            }

            collection_write_event_list[_event.collection].push_updata_event(_event);
        }