Package com.wowza.wms.pushpublish.model
Interface IPushPublishSession
-
- All Known Implementing Classes:
PushPublishSessionBase
,PushPublishSessionHTTPBase
,PushPublishSessionRTMP
,PushPublishSessionRTP
public interface IPushPublishSession
The Interface IPushPublishSession.
-
-
Field Summary
Fields Modifier and Type Field Description static int
PUSHPUBLISHSESSION_TYPE_RTMP
static int
PUSHPUBLISHSESSION_TYPE_RTP
static int
PUSHPUBLISHSESSION_TYPE_UNKNOWN
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContextStr()
int
getDestinationID()
String
getProfile()
IPushPublish
getPushPublishImpl()
IMediaStream
getStream()
int
getType()
void
setProfile(String profile)
void
setPushPublishImpl(IPushPublish pushPublishImpl)
void
setStream(IMediaStream stream)
-
-
-
Field Detail
-
PUSHPUBLISHSESSION_TYPE_UNKNOWN
static final int PUSHPUBLISHSESSION_TYPE_UNKNOWN
- See Also:
- Constant Field Values
-
PUSHPUBLISHSESSION_TYPE_RTMP
static final int PUSHPUBLISHSESSION_TYPE_RTMP
- See Also:
- Constant Field Values
-
PUSHPUBLISHSESSION_TYPE_RTP
static final int PUSHPUBLISHSESSION_TYPE_RTP
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
-
getPushPublishImpl
IPushPublish getPushPublishImpl()
-
setPushPublishImpl
void setPushPublishImpl(IPushPublish pushPublishImpl)
-
getStream
IMediaStream getStream()
-
setStream
void setStream(IMediaStream stream)
-
getProfile
String getProfile()
-
setProfile
void setProfile(String profile)
-
getContextStr
String getContextStr()
-
getDestinationID
int getDestinationID()
-
-