Package org.jpox.util

Examples of org.jpox.util.SoftValueMap


    }


    protected ReferenceValueMap newReferenceValueMap()
    {
        return new SoftValueMap();
    }
View Full Code Here


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

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

        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

Related Classes of org.jpox.util.SoftValueMap

Copyright © 2018 www.massapicom. 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.