Beispiel #1
0
        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));
            });
        }
Beispiel #2
0
 public void Activate(RouteContext <TContext> context, string value)
 {
     context.AddRightActivation(_id);
     context.AddAction(() => Next(context, value));
 }