Package com.wowza.wms.mediacaster
Interface IMediaCasterNotify2
- 
- All Superinterfaces:
- IMediaCasterNotify
 
 public interface IMediaCasterNotify2 extends IMediaCasterNotify 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonConnectFailure(IMediaCaster mediaCaster)Invoked when a connection or reconnection attempt failsvoidonConnectStart(IMediaCaster mediaCaster)Invoked when a connection or reconnection attempt is invokedvoidonConnectSuccess(IMediaCaster mediaCaster)Invoked when a connection or reconnection attempt is successfulvoidonStreamStart(IMediaCaster mediaCaster)Invoked when the stream starts receiving media data from the media source.voidonStreamStop(IMediaCaster mediaCaster)Invoked when the stream stops receiving media data from the media source after the streamTimeout value has passed.- 
Methods inherited from interface com.wowza.wms.mediacaster.IMediaCasterNotifyonMediaCasterCreate, onMediaCasterDestroy, onRegisterPlayer, onSetSourceStream, onUnRegisterPlayer
 
- 
 
- 
- 
- 
Method Detail- 
onConnectStartvoid onConnectStart(IMediaCaster mediaCaster) Invoked when a connection or reconnection attempt is invoked- Parameters:
- mediaCaster-
 
 - 
onConnectSuccessvoid onConnectSuccess(IMediaCaster mediaCaster) Invoked when a connection or reconnection attempt is successful- Parameters:
- mediaCaster-
 
 - 
onConnectFailurevoid onConnectFailure(IMediaCaster mediaCaster) Invoked when a connection or reconnection attempt fails- Parameters:
- mediaCaster-
 
 - 
onStreamStartvoid onStreamStart(IMediaCaster mediaCaster) Invoked when the stream starts receiving media data from the media source. This event will only be thrown if the MediaCaster property streamTimeout is set to a non-zero value.- Parameters:
- mediaCaster-
 
 - 
onStreamStopvoid onStreamStop(IMediaCaster mediaCaster) Invoked when the stream stops receiving media data from the media source after the streamTimeout value has passed. This event will only be thrown if the MediaCaster property streamTimeout is set to a non-zero value.- Parameters:
- mediaCaster-
 
 
- 
 
-