Search Results for

    Show / Hide Table of Contents

    Class Traverser

    A traverser represents the current state of an object flowing through a ITraversal.

    Inheritance
    object
    Traverser
    Inherited Members
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Gremlin.Net.Process.Traversal
    Assembly: Gremlin.Net.dll
    Syntax
    public class Traverser

    Constructors

    Traverser(dynamic?, long)

    Initializes a new instance of the Traverser class.

    Declaration
    public Traverser(dynamic? obj, long bulk = 1)
    Parameters
    Type Name Description
    dynamic obj

    The object of the traverser.

    long bulk

    The number of traversers represented in this traverser.

    Properties

    Bulk

    Gets the number of traversers represented in this traverser.

    Declaration
    public long Bulk { get; }
    Property Value
    Type Description
    long

    Object

    Gets the object of this traverser.

    Declaration
    public dynamic? Object { get; }
    Property Value
    Type Description
    dynamic

    Methods

    Equals(Traverser?)

    Declaration
    public bool Equals(Traverser? other)
    Parameters
    Type Name Description
    Traverser other
    Returns
    Type Description
    bool

    Equals(object?)

    Declaration
    public override bool Equals(object? obj)
    Parameters
    Type Name Description
    object obj
    Returns
    Type Description
    bool
    Overrides
    object.Equals(object)

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    object.GetHashCode()
    In this article
    Back to top Copyright © 2018 The Apache Software Foundation