Package apple.imagecapturecore.protocol
Interface ICCameraDeviceDownloadDelegate
-
public interface ICCameraDeviceDownloadDelegate[@protocol] ICCameraDeviceDownloadDelegateThe object passed in as 'downloadDelegate' in the 'requestDownloadFile:options:downloadDelegate:didDownloadSelector:contextInfo:' message must conform to ICCameraDeviceDownloadDelegate protocol.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voiddidDownloadFileErrorOptionsContextInfo(ICCameraFile file, NSError error, NSDictionary<java.lang.String,?> options, org.moe.natj.general.ptr.VoidPtr contextInfo)didDownloadFile:error:options:contextInfo: This message is sent to the delegate when the requested download operation is complete.default voiddidReceiveDownloadProgressForFileDownloadedBytesMaxBytes(ICCameraFile file, long downloadedBytes, long maxBytes)didReceiveDownloadProgressForFile:downloadedBytes:maxBytes: This message is sent to the delegate to provide status of the download operation.
-
-
-
Method Detail
-
didDownloadFileErrorOptionsContextInfo
default void didDownloadFileErrorOptionsContextInfo(ICCameraFile file, NSError error, NSDictionary<java.lang.String,?> options, org.moe.natj.general.ptr.VoidPtr contextInfo)
didDownloadFile:error:options:contextInfo: This message is sent to the delegate when the requested download operation is complete.
-
didReceiveDownloadProgressForFileDownloadedBytesMaxBytes
default void didReceiveDownloadProgressForFileDownloadedBytesMaxBytes(ICCameraFile file, long downloadedBytes, long maxBytes)
didReceiveDownloadProgressForFile:downloadedBytes:maxBytes: This message is sent to the delegate to provide status of the download operation.
-
-