Package com.tinkerpop.gremlin.process.util

Examples of com.tinkerpop.gremlin.process.util.DefaultTraversalSideEffects


     *
     * @param localVertex the currently executing vertex
     * @return a sideEffect API to get and put sideEffect data onto the vertex
     */
    public static Traversal.SideEffects getLocalSideEffects(final Vertex localVertex) {
        return new DefaultTraversalSideEffects(localVertex);    // TODO: use a worker static object
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.process.util.DefaultTraversalSideEffects

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.