Search Results for

    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

    IsAnonymous

    Determines if this traversal was spawned anonymously or not.

    Declaration
    bool IsAnonymous { get; }
    Property Value
    Type Description
    System.Boolean

    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
    System.Collections.Generic.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>
    In This Article
    Back to top Copyright © 2018 The Apache Software Foundation