Click or drag to resize
PoolFactorySetMinConnections Method
Set the minimum number of connections to keep available at all times.

Namespace: GemStone.GemFire.Cache
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public PoolFactory SetMinConnections(
	int minConnections
)

Parameters

minConnections
Type: SystemInt32

Return Value

Type: PoolFactory
Exceptions
ExceptionCondition
throws IllegalArgumentException if minConnections is less than 0.
Remarks
When the pool is created, it will create this many connections. If 0 then connections will not be made until an actual operation is done that requires client-to-server communication.
See Also