Esempio n. 1
0
 public static int CompareTo(this IExternalNode x, IExternalNode y)
 {
   if (x.IsAncestorOf(y))
     return -1;
   if (y.IsAncestorOf(x))
     return 1;
   return 0;
 }
Esempio n. 2
0
 protected override void ReleaseSelf()
 {
     base.ReleaseSelf();
     if (node != null)
     {
         node.OnDestroy();
     }
     node = null;
 }
Esempio n. 3
0
 public override void Release()
 {
     base.Release();
     if (node != null)
     {
         node.OnDestroy();
     }
     node = null;
 }
Esempio n. 4
0
 public static bool IsAncestorOf(this IExternalNode x, IExternalNode y) => x.Descendents().Contains(y);
Esempio n. 5
0
File: DAG.cs Progetto: rbec/malbec
 public static IEnumerable<INode> LazyDescendents(IExternalNode node) => node.Subscribers.Concat(node.Subscribers.Where(n => n.React()).SelectMany(LazyDescendents)).Distinct();
Esempio n. 6
0
 public void Set(IExternalNode node)
 {
     this.node = node;
 }