Show / Hide Table of Contents

    Interface ITraversalSideEffects

    A ITraversal can maintain global sideEffects.

    Inherited Members
    System.IDisposable.Dispose()
    Namespace: Gremlin.Net.Process.Traversal
    Assembly: cs.temp.dll.dll
    Syntax
    [Obsolete("As of release 3.3.8, not replaced, prefer use of cap()-step to retrieve side-effects as part of traversal iteration", false)]
    public interface ITraversalSideEffects : IDisposable

    Methods

    Close()

    Invalidates the side effect cache for traversal.

    Declaration
    void Close()

    Get(String)

    Gets the side-effect associated with the provided key.

    Declaration
    object Get(string key)
    Parameters
    Type Name Description
    System.String key

    The key to get the value for.

    Returns
    Type Description
    System.Object

    The value associated with key.

    Keys()

    Retrieves the keys of the side-effect that can be supplied to Get(String).

    Declaration
    IReadOnlyCollection<string> Keys()
    Returns
    Type Description
    IReadOnlyCollection<System.String>

    The keys of the side-effect.

    Back to top Copyright © 2018 The Apache Software Foundation