Package com.tinkerpop.pipes.sideeffect

Examples of com.tinkerpop.pipes.sideeffect.SideEffectFunctionPipe


     *
     * @param sideEffectFunction the function of the pipe
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, E> sideEffect(final PipeFunction<E, ?> sideEffectFunction) {
        return this.add(new SideEffectFunctionPipe(FluentUtility.prepareFunction(this.asMap, sideEffectFunction)));
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.pipes.sideeffect.SideEffectFunctionPipe

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.