Package com.wowza.wms.stream
Interface IMediaWriterActionNotify
- 
- All Known Implementing Classes:
- MediaWriterActionNotifyBase
 
 public interface IMediaWriterActionNotifyIMediaWriterActionNotify: listener interface for file writing with regard to recording streams. 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFLVAddMetadata(IMediaStream stream, java.util.Map<String,Object> extraMetadata)Called just before metadata is written to the file (FLV only)voidonWriteComplete(IMediaStream stream, java.io.File file)Called when writing is complete
 
- 
- 
- 
Method Detail- 
onWriteCompletevoid onWriteComplete(IMediaStream stream, java.io.File file) Called when writing is complete- Parameters:
- stream- stream
- file- file handle
 
 - 
onFLVAddMetadatavoid onFLVAddMetadata(IMediaStream stream, java.util.Map<String,Object> extraMetadata) Called just before metadata is written to the file (FLV only)- Parameters:
- stream- stream
- extraMetadata- additional metadata, add to this collection to add items to onMetadata event written to FLV file.
 
 
- 
 
-