Show / Hide Table of Contents

    Interface ITraversal

    Represents the basic information for a walk over a graph.

    Namespace: Gremlin.Net.Process.Traversal
    Assembly: cs.temp.dll.dll
    Syntax
    public interface ITraversal : IEnumerator

    Properties

    Bytecode

    Gets the Bytecode representation of this traversal.

    Declaration
    Bytecode Bytecode { get; }
    Property Value
    Type Description
    Bytecode

    SideEffects

    Gets or sets the ITraversalSideEffects of this traversal.

    Declaration
    ITraversalSideEffects SideEffects { get; set; }
    Property Value
    Type Description
    ITraversalSideEffects

    Traversers

    Gets or sets the Traverser's of this traversal that hold the results of the traversal.

    Declaration
    IEnumerable<Traverser> Traversers { get; set; }
    Property Value
    Type Description
    IEnumerable<Traverser>

    Methods

    Iterate()

    Iterates all Traverser instances in the traversal.

    Declaration
    ITraversal Iterate()
    Returns
    Type Description
    ITraversal

    The fully drained traversal.

    See Also

    ITraversal<S, E>
    Back to top Copyright © 2018 The Apache Software Foundation