Exemplo n.º 1
0
        private static CEPExpression <Out> CreateChildExpr <Out>(CEPExpression <InputType> parent, AbstractBlock block, string newname)
        {
            var ret = new CEPExpression <Out>(parent.processor);

            ret.processor          = parent.processor;
            parent.ChildExpression = ret;
            ret.blockFactory       = parent.blockFactory;
            //ret.CEPOutputEvent = parent.CEPOutputEvent;
            ret.name             = newname;
            ret.ThisBlock        = block;
            ret.ParentExpression = parent;
            return(ret);
        }
Exemplo n.º 2
0
 public ICEPExpression <InputType> NotIn(CEPExpression <InputType> expr)
 {
     throw new NotImplementedException();
 }