Package com.wowza.wms.transport.media
Interface IMediaTransportObject
- 
 public interface IMediaTransportObjectIMediaTransportObject 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description IMediaTransportDataObjectgetDataObject()Gets the IMediaTransportDataObject from this transport object.intgetMaxAttempts()Gets the max attempts for this object.longgetRetryTime()Gets the retry time for this object.voidsetDataObject(IMediaTransportDataObject dataObject)Sets the IMediaTransportDataObject object for this transport objectvoidsetMaxAttempts(int attempts)Sets the max attempts for this object.voidsetRetryTime(long retrytime)Sets the retry time for this object.
 
- 
- 
- 
Method Detail- 
setDataObjectvoid setDataObject(IMediaTransportDataObject dataObject) Sets the IMediaTransportDataObject object for this transport object- Parameters:
- IMediaTransportDataObject-
 
 - 
getDataObjectIMediaTransportDataObject getDataObject() Gets the IMediaTransportDataObject from this transport object.- Returns:
- IMediaTransportDataObject
 
 - 
setRetryTimevoid setRetryTime(long retrytime) Sets the retry time for this object.- Parameters:
- long-
 
 - 
getRetryTimelong getRetryTime() Gets the retry time for this object.- Returns:
- long
 
 - 
setMaxAttemptsvoid setMaxAttempts(int attempts) Sets the max attempts for this object.- Parameters:
- int-
 
 - 
getMaxAttemptsint getMaxAttempts() Gets the max attempts for this object.- Returns:
- int
 
 
- 
 
-