// Cache for outbound connections (orb)
private volatile OutboundConnectionCache<ConnectionSession> connectionCache;
private WSConnectionManager() {
ConnectionManagementSettings settings =
ConnectionManagementSettings.getSettingsHolder().getClientSettings();
int highWatermark = settings.getHighWatermark();
int numberToReclaim = settings.getNumberToReclaim();
int maxParallelConnections = settings.getMaxParallelConnections();
connectionCache = ConnectionCacheFactory.<ConnectionSession>makeBlockingOutboundConnectionCache("SOAP/TCP client side cache",
highWatermark, numberToReclaim, maxParallelConnections, logger);
if (logger.isLoggable(Level.FINE)) {