Package com.asakusafw.compiler.flow.testing.operator.ExOperatorFactory

Examples of com.asakusafw.compiler.flow.testing.operator.ExOperatorFactory.Random


    @Override
    protected void describe() {
        ExOperatorFactory f = new ExOperatorFactory();
        CoreOperatorFactory core = new CoreOperatorFactory();
        Random rand = f.random(in);
        Cogroup cog1 = f.cogroup(rand.out, core.empty(Ex2.class));
        Cogroup cog2 = f.cogroup(rand.out, core.empty(Ex2.class));
        out.add(cog1.r1);
        out.add(cog2.r1);
        core.stop(cog1.r2);
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.testing.operator.ExOperatorFactory.Random

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.