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

org.ocap.dvr.storage.MediaStorageEvent Maven / Gradle / Ivy

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

import org.ocap.storage.StorageManagerEvent;
import org.ocap.shared.dvr.navigation.RecordingList;

/**
 * This interface SHALL be implemented by StorageManagerEvents
 * generated by the implementation that involve a StorageProxy
 * which contains MediaStorageVolumes.
 */
public interface MediaStorageEvent
{
    /**
     * Returns the list of scheduled, pending, in-progress, and completed 
     * recordings for which a contained MediaStorageVolume is
     * an explicit or implicit destination.
     * 

* Note that this may include recordings which no longer exist (in the * case of a {@link StorageManagerEvent#STORAGE_PROXY_REMOVED delete}) * or recordings that previously did not exist (in the case of an * {@link StorageManagerEvent#STORAGE_PROXY_ADDED add}). * * @return the list of recordings affected by this event. */ public RecordingList getEntries(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy