public void VertexPropertyRemoved(IVertex vertex, string s, object o)
        {
            GraphChangedListenerContract.ValidateVertexPropertyRemoved(vertex, s, o);

            Interlocked.Increment(ref _vertexPropertyRemovedEvent);
            _order.Enqueue(string.Concat("v-property-removed-", vertex.Id, "-", s, ":", o));
        }
Beispiel #2
0
        public void VertexPropertyRemoved(IVertex vertex, string key, object removedValue)
        {
            GraphChangedListenerContract.ValidateVertexPropertyRemoved(vertex, key, removedValue);

            Console.WriteLine(string.Concat("Vertex [", vertex, "] property [", key, "] with value of [", removedValue,
                                            "] removed in graph [", _graph, "]"));
        }