Package javax.util.jcache

Examples of javax.util.jcache.Attributes.reset()


    public void resetAttributes(Attributes attributes) {
        if (!isValid()) {
            return;
        }
        Attributes att = region.getAttributes();
        att.reset();
        att.applyAttributes(attributes);
    }

    /**
     * See {@link #resetAttributes(Attributes)}.
View Full Code Here


    public void resetAttributes(Object name, Attributes attributes) {
        if (!isValid()) {
            return;
        }
        Attributes att = CacheImpl.getCache(true).getRegion(name).getAttributes();
        att.reset();
        att.applyAttributes(attributes);
    }

    /**
     * Will cause all objects within the region of this CacheAccess to be saved
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.