AdPodcastManagerDownloadDelegate
@objc(AASDKAdPodcastManagerDownloadDelegate)
public protocol AdPodcastManagerDownloadDelegateThe AdPodcastManagerDownloadDelegate protocol defines the methods used to get information during podcast downloads.
- 
                  
                  Called when an asset has downloaded a chunk of its data. DeclarationSwift func adPodcastManager(_ adPodcastManager: AdPodcastManager, didDownload bytesDownloaded: Int64, outOf bytesExpected: Int64, for asset: DownloadableAsset)ParametersadPodcastManagerthe podcast manager bytesDownloadedthe total bytes downloaded so far bytesExpectedthe total bytes to download assetthe downloadable asset 
- 
                  
                  Called when an asset has finished downloading all of its data. DeclarationSwift func adPodcastManager(_ adPodcastManager: AdPodcastManager, didFinishDownload asset: DownloadableAsset)ParametersadPodcastManagerthe podcast manager assetthe asset 
- 
                  
                  Called when an asset has encountered an error during download. DeclarationSwift func adPodcastManager(_ adPodcastManager: AdPodcastManager, didReceive error: Error, for asset: DownloadableAsset)ParametersadPodcastManagerthe podcast manager errorthe error received assetthe asset 
