Examples of SoftValueMap


Examples of org.jpox.util.SoftValueMap

     */
    public SoftLevel2Cache(OMFContext omfCtx)
    {
        pinnedCache = new HashMap();

        unpinnedCache = new SoftValueMap();
    }
View Full Code Here

Examples of org.jpox.util.SoftValueMap

        ext = (String)query.getExtension("org.jpox.query.resultCacheType");
        if (ext != null)
        {
            if (ext.equalsIgnoreCase("soft"))
            {
                resultsObjsByIndex = new SoftValueMap();
            }
            else if (ext.equalsIgnoreCase("weak"))
            {
                resultsObjsByIndex = new WeakValueMap();
            }
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.