Exemplo n.º 1
0
 public void RightActivate(RuntimeModel.ActivationContext context, Func <ActivationContext <T>, bool> callback)
 {
     // constant nodes are never activated by an alpha node, so they would never have pending joins
 }
Exemplo n.º 2
0
 public void RightActivate(RuntimeModel.ActivationContext context, Func <ActivationContext <T>, bool> callback)
 {
     context.Access <T>(_id, x => x.All(callback));
 }
Exemplo n.º 3
0
 public void RightActivate(RuntimeModel.ActivationContext context,
                           Func <ActivationContext <Token <T, TDiscard> >, bool> callback)
 {
     context.Access <Token <T, TDiscard> >(Id, x => x.All(callback));
 }