All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ocap.storage.AvailableStorageListener Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.ocap.storage;

import java.util.EventListener;

/**
 * This interface represents a listener that can be set to listen for high water
 * level reached in persistent storage indicated by the dvb.persistent.root
 * property for all applications.
 */
public interface AvailableStorageListener extends EventListener
{
    /**
     * Notifies the listener a high water mark has been reached in the 
     * available memory indicated by dvb.persistent.root and available to
     * all applications.  The high water mark was set as a parameter in a
     * call to the StorageManager.addAvailableStorageListener
     * method.
     */
    public void notifyHighWaterMarkReached();
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy