Package com.asakusafw.compiler.flow.example

Examples of com.asakusafw.compiler.flow.example.NoShuffleStage


        Ex1 ex1 = new Ex1();
        ex1.setSid(1);
        ex1.setValue(10);
        in.add(ex1);

        FlowDescription flow = new NoShuffleStage(in.flow(), out.flow());
        assertThat(tester.runFlow(flow), is(true));

        List<Ex1> list = out.toList();
        assertThat(list.size(), is(1));
        assertThat(list.get(0).getValue(), is(100));
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.example.NoShuffleStage

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.