Search Results for

    Show / Hide Table of Contents

    Interface IRemoteConnection

    A simple abstraction of a "connection" to a "server".

    Namespace: Gremlin.Net.Process.Remote
    Assembly: cs.temp.dll.dll
    Syntax
    public interface IRemoteConnection

    Properties

    IsSessionBound

    Determines if the connection is bound to a session.

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

    Methods

    SubmitAsync<S, E>(Bytecode)

    Submits to a server and returns a .

    Declaration
    Task<ITraversal<S, E>> SubmitAsync<S, E>(Bytecode bytecode)
    Parameters
    Type Name Description
    Bytecode bytecode

    The to send.

    Returns
    Type Description
    System.Threading.Tasks.Task<ITraversal<S, E>>

    The with the results and optional side-effects.

    Type Parameters
    Name Description
    S
    E

    Tx(GraphTraversalSource)

    Creates a RemoteTransaction in the context of a designed to work with remote semantics.

    Declaration
    RemoteTransaction Tx(GraphTraversalSource graphTraversalSource)
    Parameters
    Type Name Description
    GraphTraversalSource graphTraversalSource

    The providing the context for the RemoteTransaction.

    Returns
    Type Description
    RemoteTransaction

    The created RemoteTransaction.

    In This Article
    Back to top Copyright © 2018 The Apache Software Foundation