public interface IMediaCacheStoreNotify
MediaCache Interface for store creation and destroy notifications
This interface can be configured via the CacheStoreListenerClassList configuration item in the main MediaCache configuration section.
<CacheStoreListenerClassList>com.wowza.mediacache.example.storelistener</CacheStoreListenerClassList>
It is triggered when a store is added/removed from the running MediaCache configuration. This is done either as MediaCache starts up or dynamically via the API.
| Modifier and Type | Method | Description |
|---|---|---|
void |
onMediaCacheStoreCreate(com.wowza.wms.mediacache.model.MediaCacheStore mediaCacheStore) |
When a store is added this is called with the current store as a parameter.
|
void |
onMediaCacheStoreDestroy(com.wowza.wms.mediacache.model.MediaCacheStore mediaCacheStore) |
When a store is removed successfully this is called with the store removed
as a parameter.
|
void onMediaCacheStoreCreate(com.wowza.wms.mediacache.model.MediaCacheStore mediaCacheStore)
mediaCacheStore - void onMediaCacheStoreDestroy(com.wowza.wms.mediacache.model.MediaCacheStore mediaCacheStore)
mediaCacheStore -