Examples of RpfFrameCacheHandler


Examples of com.bbn.openmap.layer.rpf.RpfFrameCacheHandler

     * here, create it.
     *
     * @param uniqueID a unique identifier.
     */
    protected RpfFrameCacheHandler getCurrentCache(String uniqueID) {
        RpfFrameCacheHandler cache = (RpfFrameCacheHandler) caches.get(uniqueID);
        if (cache == null && tocs != null) {
            Debug.message("crfp", "CRFPServer: Creating cache for new client");
            cache = new RpfFrameCacheHandler(tocs);
            caches.put(uniqueID, cache);
        }

        timestamps.put(uniqueID, new Long(System.currentTimeMillis()));
        return cache;
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.