Searched defs:allocator (Results 1 - 11 of 11) sorted by relevance

/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/
H A DResourceHandler.java44 import com.sun.enterprise.resource.allocator.ResourceAllocator;
64 * create a new resource using the given resource-allocator
65 * @param allocator allocator to create a resource
69 ResourceHandle createResource(ResourceAllocator allocator) throws PoolingException; argument
72 * create a new resource and add it to pool (using default resource-allocator)
H A DUnpooledResource.java44 import com.sun.enterprise.resource.allocator.ResourceAllocator;
74 protected synchronized void initPool(ResourceAllocator allocator) argument
H A DConnectionPool.java51 import com.sun.enterprise.resource.allocator.ResourceAllocator;
139 // NOTE: This resource allocator may not be the same as the allocator passed in to getResource()
140 protected ResourceAllocator allocator; field in class:ConnectionPool
221 protected synchronized void initPool(ResourceAllocator allocator) argument
228 this.allocator = allocator;
230 createResources(this.allocator, steadyPoolSize - ds.getResourcesSize());
356 //from the allocator that we have and adjust the resources
359 ///Also since we are creating the resource out of the allocator
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/allocator/
H A DConnectorAllocator.java41 package com.sun.enterprise.resource.allocator;
H A DLocalTxConnectorAllocator.java41 package com.sun.enterprise.resource.allocator;
H A DNoTxConnectorAllocator.java41 package com.sun.enterprise.resource.allocator;
H A DResourceAllocator.java41 package com.sun.enterprise.resource.allocator;
H A DAbstractConnectorAllocator.java41 package com.sun.enterprise.resource.allocator;
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/datastructure/
H A DDataStructure.java44 import com.sun.enterprise.resource.allocator.ResourceAllocator;
71 * @param allocator ResourceAllocator
76 int addResource(ResourceAllocator allocator, int count) throws PoolingException; argument
H A DListDataStructure.java44 import com.sun.enterprise.resource.allocator.ResourceAllocator;
116 * @param allocator ResourceAllocator
120 public int addResource(ResourceAllocator allocator, int count) throws PoolingException { argument
126 ResourceHandle handle = handler.createResource(allocator);
H A DRWLockDataStructure.java43 import com.sun.enterprise.resource.allocator.ResourceAllocator;
92 public int addResource(ResourceAllocator allocator, int count) throws PoolingException { argument
98 ResourceHandle handle = handler.createResource(allocator);

Completed in 42 milliseconds