Package org.easybatch.tutorials.jmx

Examples of org.easybatch.tutorials.jmx.GreetingSlowProcessor


    public static EasyBatchEngine buildEasyBatchEngine(int id) {
        return new EasyBatchEngineBuilder()
                .registerRecordReader(new GreetingJmsReader(id))
                .registerRecordMapper(new DelimitedRecordMapper<Greeting>(Greeting.class, new String[]{"id","name"}))
                .registerRecordProcessor(new GreetingSlowProcessor())
                .build();
    }
View Full Code Here

TOP

Related Classes of org.easybatch.tutorials.jmx.GreetingSlowProcessor

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.