Class PartitionStrategy
Partitions the vertices, edges and vertex properties of a graph into String named partitions.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Gremlin.Net.Process.Traversal.Strategy.Decoration
Assembly: cs.temp.dll.dll
Syntax
public class PartitionStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy>
Constructors
PartitionStrategy()
Initializes a new instance of the PartitionStrategy class.
Declaration
public PartitionStrategy()
PartitionStrategy(String, String, IEnumerable<String>, Nullable<Boolean>)
Initializes a new instance of the PartitionStrategy class.
Declaration
public PartitionStrategy(string partitionKey = null, string writePartition = null, IEnumerable<string> readPartitions = null, bool? includeMetaProperties = default(bool? ))
Parameters
Type | Name | Description |
---|---|---|
System.String | partitionKey | Specifies the partition key name. |
System.String | writePartition | Specifies the name of the partition to write when adding vertices, edges and vertex properties. |
IEnumerable<System.String> | readPartitions | Specifies the partition of the graph to read from. |
System.Nullable<System.Boolean> | includeMetaProperties | Set to true if vertex properties should get assigned to partitions. |
Implements
System.IEquatable<T>