Package com.wowza.wms.rtp.model
Interface IRTPSessionNotify
-
public interface IRTPSessionNotify
IRTPSessionNotify: listener interface for RTP sessions. See RTPSessions.addSessionListener(IRTPSessionNotify listener)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onRTPSessionCreate(RTPSession rtpSession)
Invoked when RTP session is createdvoid
onRTPSessionDestroy(RTPSession rtpSession)
Invoked when RTP session is destroyed
-
-
-
Method Detail
-
onRTPSessionCreate
void onRTPSessionCreate(RTPSession rtpSession)
Invoked when RTP session is created- Parameters:
rtpSession
- RTP session
-
onRTPSessionDestroy
void onRTPSessionDestroy(RTPSession rtpSession)
Invoked when RTP session is destroyed- Parameters:
rtpSession
- RTP session
-
-