Package com.wowza.wms.rtp.model
Interface IRTSPActionNotify
-
- All Known Implementing Classes:
PushPublishRTSPActionNotify
public interface IRTSPActionNotify
IRTSPActionNotify: listener interface for RTSP actions. See RTPSession.addActionListener(IRTSPActionNotify actionListener)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onAnnounce(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by ANNOUNCE commandvoid
onDescribe(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by DESCRIBE commandvoid
onGetParameter(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by GET_PARAMETER commandvoid
onOptions(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by OPTIONS commandvoid
onPause(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by PAUSE commandvoid
onPlay(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by PLAY commandvoid
onRecord(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by RECORD commandvoid
onRedirect(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by REDIRECT commandvoid
onSetParameter(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by SET_PARAMETER commandvoid
onSetup(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by SETUP commandvoid
onTeardown(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by TEARDOWN command
-
-
-
Method Detail
-
onDescribe
void onDescribe(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by DESCRIBE command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onAnnounce
void onAnnounce(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by ANNOUNCE command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onSetParameter
void onSetParameter(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by SET_PARAMETER command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onGetParameter
void onGetParameter(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by GET_PARAMETER command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onOptions
void onOptions(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by OPTIONS command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onPause
void onPause(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by PAUSE command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onPlay
void onPlay(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by PLAY command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onRecord
void onRecord(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by RECORD command- Parameters:
rtspSession
-req
-resp
-
-
onRedirect
void onRedirect(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by REDIRECT command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onSetup
void onSetup(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by SETUP command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
onTeardown
void onTeardown(RTPSession rtspSession, com.wowza.wms.rtsp.RTSPRequestMessage req, com.wowza.wms.rtsp.RTSPResponseMessages resp)
Invoked by TEARDOWN command- Parameters:
rtspSession
- RTP sessionreq
- RTP requestresp
- RTP response
-
-