Example usage for org.apache.commons.pool.impl SoftReferenceObjectPool SoftReferenceObjectPool

List of usage examples for org.apache.commons.pool.impl SoftReferenceObjectPool SoftReferenceObjectPool

Introduction

In this page you can find the example usage for org.apache.commons.pool.impl SoftReferenceObjectPool SoftReferenceObjectPool.

Prototype

public SoftReferenceObjectPool(final PoolableObjectFactory factory) 

Source Link

Usage

From source file:org.openrepose.filters.translation.TranslationHandlerFactory.java

private ObjectPool<XmlFilterChain> buildChainPool(final TranslationBase translation) {
    return new SoftReferenceObjectPool<XmlFilterChain>(
            new XmlFilterChainFactory(xsltChainBuilder, translation, configurationRoot, config));
}