Package com.wowza.wms.transport.media
Interface IMediaTransportObject
public interface IMediaTransportObject
IMediaTransportObject
This object is used by a transport provider to manage data delivery.
This is used by the MediaTransportProviderBase class and is an internal
object only.
-
Method Summary
Modifier and TypeMethodDescriptionGets the IMediaTransportDataObject from this transport object.int
Gets the max attempts for this object.long
Gets the retry time for this object.void
setDataObject
(IMediaTransportDataObject dataObject) Sets the IMediaTransportDataObject object for this transport objectvoid
setMaxAttempts
(int attempts) Sets the max attempts for this object.void
setRetryTime
(long retrytime) Sets the retry time for this object.
-
Method Details
-
setDataObject
Sets the IMediaTransportDataObject object for this transport object- Parameters:
IMediaTransportDataObject
-
-
getDataObject
IMediaTransportDataObject getDataObject()Gets the IMediaTransportDataObject from this transport object.- Returns:
- IMediaTransportDataObject
-
setRetryTime
void setRetryTime(long retrytime) Sets the retry time for this object.- Parameters:
long
-
-
getRetryTime
long getRetryTime()Gets the retry time for this object.- Returns:
- long
-
setMaxAttempts
void setMaxAttempts(int attempts) Sets the max attempts for this object.- Parameters:
int
-
-
getMaxAttempts
int getMaxAttempts()Gets the max attempts for this object.- Returns:
- int
-