Package com.mozilla.grouperfish.batch.handlers

Examples of com.mozilla.grouperfish.batch.handlers.SequentialHandler


    static TaskHandler sequentialHandler(
            final Grid grid,
            final FileSystem fs,
            final IndexProvider indexes,
            final TransformProvider transforms) {
        return new SequentialHandler(
                new FetchHandler(fs, indexes),
                new RunHandler(fs, transforms),
                new PutHandler(grid, fs),
                new CleanupHandler(fs));
    }
View Full Code Here

TOP

Related Classes of com.mozilla.grouperfish.batch.handlers.SequentialHandler

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.