Example usage for org.apache.commons.cache Cache unregisterStorageListeners

List of usage examples for org.apache.commons.cache Cache unregisterStorageListeners

Introduction

In this page you can find the example usage for org.apache.commons.cache Cache unregisterStorageListeners.

Prototype

public abstract void unregisterStorageListeners();

Source Link

Document

Clear my set of StorageListener s.

Usage

From source file:com.adito.policyframework.PrincipalCache.java

protected static void closeCache(Cache cache) {
    try {/* ww  w  .ja v  a2s.co m*/
        cache.clear();
        cache.unregisterStorageListeners();
    } catch (Exception e) {
        logger.error("Failed to close cache", e);
    }
}