예제 #1
0
 public void SendInformalMessage(Node recipient, TimeSpan time)
 {
     TimeEdges.Add(recipient);
     TimeMessage.Add(time);
     this.SendMessage(recipient);
     recipient.ReceiveInformaion(this, time);
 }
예제 #2
0
 protected void ReceiveInformaion(Node sender, TimeSpan time)
 {
     TimeEdges.Add(sender);
     TimeMessage.Add(time);
 }