示例#1
0
        public override void UpdateGraph(Node node, GraphUpdate.UpdateType type)
        {
            GraphUpdate update = new GraphUpdate()
            {
                updatetype = type, node = node
            };

            _waitingGraphUpdates.Enqueue(new GraphUpdate()
            {
                updatetype = type, node = node
            });
        }
示例#2
0
 public abstract void UpdateGraph(Node node, GraphUpdate.UpdateType type);
示例#3
0
 public override void UpdateGraph(Node node, GraphUpdate.UpdateType type)
 {
     Log("In remote endpoint, we're not responsible for updating this part of the graph");
 }