public void Activate(RouteContext <TContext> context, string value) { // right activate our join partner _rightActivation.RightActivate(context, x => { // we were matched, so add our node to the right activation network context.AddRightActivation(_id); // add activation of our children to the agenda for execution context.AddAction(() => Next(context, value)); }); }
public void Activate(RouteContext <TContext> context, string value) { context.AddRightActivation(_id); context.AddAction(() => Next(context, value)); }