コード例 #1
0
ファイル: DurableQueue.cs プロジェクト: mamasha/hydra
 void IDurableQueue.Add(IDurableOperation op)
 {
     _ops.AddLast(op);
     _counters.Vcall_State_DurableOperations++;
 }
コード例 #2
0
ファイル: DurableQueue.cs プロジェクト: mamasha/hydra
        void IDurableQueue.Remove(IDurableOperation op)
        {
            bool wasThere = _ops.Remove(op);

            if (wasThere)
                _counters.Vcall_State_DurableOperations--;
        }