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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMediaTransportDataObject
getDataObject()
Gets the IMediaTransportDataObject from this transport object.int
getMaxAttempts()
Gets the max attempts for this object.long
getRetryTime()
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 Detail
-
setDataObject
void setDataObject(IMediaTransportDataObject dataObject)
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
-
-