Ejemplo n.º 1
0
 void IDurableQueue.Add(IDurableOperation op)
 {
     _ops.AddLast(op);
     _counters.Vcall_State_DurableOperations++;
 }
Ejemplo n.º 2
0
        void IDurableQueue.Remove(IDurableOperation op)
        {
            bool wasThere = _ops.Remove(op);

            if (wasThere)
                _counters.Vcall_State_DurableOperations--;
        }