Interface ICupertinoMediaCasterChunkFetch
- 
 public interface ICupertinoMediaCasterChunkFetchInterface to fetch Apple HLS chunks for processing This can be replaced by a custom implementation from the default using the property in MediaCaster -> Properties Name: cupertinoChunkFetchClass Value: Full Class Path Type: String
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description com.wowza.wms.mediacaster.cupertino.CupertinoMediaCasterFetchedResultfetchBlock(String path, int timeOut, int retries)Called when a manifest is to be fetchedcom.wowza.wms.mediacaster.cupertino.CupertinoMediaCasterFetchedResultfetchManifest(String path, int timeOut, int retries)Called when a manifest is to be fetchedvoidinit(IApplicationInstance appins, com.wowza.wms.mediacaster.cupertino.CupertinoMediaCasterContext context)Called when the class is initiated.
 
- 
- 
- 
Method Detail- 
initvoid init(IApplicationInstance appins, com.wowza.wms.mediacaster.cupertino.CupertinoMediaCasterContext context) Called when the class is initiated.- Parameters:
- appins- Application instance
- context- MediaCaster context object containing configuration settings
 
 - 
fetchManifestcom.wowza.wms.mediacaster.cupertino.CupertinoMediaCasterFetchedResult fetchManifest(String path, int timeOut, int retries)Called when a manifest is to be fetched- Parameters:
- path- - The path to the manifest to be fetched. It is up to the class to handle the path
- timeOut- - The time in milliseconds to wait for a timeout
- retries- - The number of retries to perform when attempt to get the data requested
- Returns:
- CupertinoMediaCasterFetchedResult - The data type should be set to CupertinoMediaCasterFetchedResult.textType
 
 - 
fetchBlockcom.wowza.wms.mediacaster.cupertino.CupertinoMediaCasterFetchedResult fetchBlock(String path, int timeOut, int retries)Called when a manifest is to be fetched- Parameters:
- path- - The path to the asset to be fetched. It is up to the class to handle the path
- timeOut- - The time in milliseconds to wait for a timeout
- retries- - The number of retries to perform when attempt to get the data requested
- Returns:
- CupertinoMediaCasterFetchedResult - The data type should be set to CupertinoMediaCasterFetchedResult.dataType
 
 
- 
 
-