Examples of IJISPCacheAttributes


Examples of org.apache.stratum.jcs.auxiliary.disk.jisp.behavior.IJISPCacheAttributes


    /** Description of the Method */
    public ICache createCache( IAuxiliaryCacheAttributes iaca )
    {
        IJISPCacheAttributes idca = ( IJISPCacheAttributes ) iaca;
        JISPCacheManager dcm = JISPCacheManager.getInstance( idca );
        return dcm.getCache( idca );
    }
View Full Code Here

Examples of org.apache.stratum.jcs.auxiliary.disk.jisp.behavior.IJISPCacheAttributes

     *
     * @return The cache value
     */
    public ICache getCache( String cacheName )
    {
        IJISPCacheAttributes cattr = ( IJISPCacheAttributes ) defaultCattr.copy();
        cattr.setCacheName( cacheName );
        return getCache( cattr );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.