GraphNodeSetEdgeGrowthRate
Method
|
Sets the number of outgoing and incoming edges
that are allocated at a time on a graph node. If the node-to-node
relationship contains many edges, this method should be called to
increase the rate of the outgoing and incoming edges from the
defaults of 4 and 2 respectively. Setting the rates to higher
values increases performance but may increase memory usage.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public void SetEdgeGrowthRate(
int outEdgeRate,
int inEdgeRate
)
Public Sub SetEdgeGrowthRate (
outEdgeRate As Integer,
inEdgeRate As Integer
)
public:
void SetEdgeGrowthRate(
int outEdgeRate,
int inEdgeRate
)
member SetEdgeGrowthRate :
outEdgeRate : int *
inEdgeRate : int -> unit
Parameters
- outEdgeRate Int32
- [in] Number of outgoing edges allocated at one time.
- inEdgeRate Int32
- [in] Number of incoming edges allocated at one time.
See Also