Interface ITraversalSideEffects
A ITraversal can maintain global sideEffects.
Inherited Members
System.IDisposable.Dispose()
Namespace: Gremlin.Net.Process.Traversal
Assembly: cs.temp.dll.dll
Syntax
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 |
---|---|
System.Collections.Generic.IReadOnlyCollection<System.String> | The keys of the side-effect. |