FileDocCategorySizeDatePackage
ConnectionCacheFactory.javaAPI DocExample3377Tue May 29 16:57:06 BST 2007com.sun.xml.ws.transport.tcp.connectioncache.spi.transport

ConnectionCacheFactory

public final class ConnectionCacheFactory extends Object
A factory class for creating connections caches. Note that a rather unusual syntax is needed for calling these methods: ConnectionCacheFactory.makeXXXCache() This is required because the type variable V is not used in the parameters of the factory method (there are no parameters).

Fields Summary
Constructors Summary
private ConnectionCacheFactory()

Methods Summary
public static InboundConnectionCachemakeBlockingInboundConnectionCache(java.lang.String cacheType, int highWaterMark, int numberToReclaim, java.util.logging.Logger logger)

	return new InboundConnectionCacheBlockingImpl<C>( cacheType,
	    highWaterMark, numberToReclaim, logger ) ;
    
public static OutboundConnectionCachemakeBlockingOutboundConnectionCache(java.lang.String cacheType, int highWaterMark, int numberToReclaim, int maxParallelConnections, java.util.logging.Logger logger)


	return new OutboundConnectionCacheBlockingImpl<C>( cacheType, highWaterMark,
	    numberToReclaim, maxParallelConnections, logger ) ;