Search Results for

    Show / Hide Table of Contents

    Interface ITraversal

    Represents the basic information for a walk over a graph.

    Inherited Members
    IEnumerator.MoveNext()
    IEnumerator.Reset()
    IEnumerator.Current
    Namespace: Gremlin.Net.Process.Traversal
    Assembly: Gremlin.Net.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
    bool

    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<TStart, TEnd>
    In this article
    Back to top Copyright © 2018 The Apache Software Foundation