All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tinkerpop.gremlin.ogm.paths.steps.StepTraverser.kt Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package org.apache.tinkerpop.gremlin.ogm.paths.steps

import org.apache.tinkerpop.gremlin.ogm.GraphMapper
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal


/**
 * This object is passed to the 'invoke' function of objects implementing the [Path] interface.
 */
class StepTraverser(

        /**
         * The traversal that an implementor of [Path] should use to advance the traversal.
         */
        val traversal: GraphTraversal<*, FROM>,

        /**
         * The graph mapper that is managing the traversal.
         * Use this mapper to serialize/deserialize objects to/from their graph form
         */
        val graphMapper: GraphMapper
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy