RichieURLDownloadFactory

Objective-C

@protocol RichieURLDownloadFactory <NSObject>

-(RichieURLDownload *) downloadToMemory;
-(RichieURLDownload *) downloadWithoutStoringDataWithByteRangeStart:(int64_t)byteRangeStart;
-(RichieURLDownload *) downloadToPath:(NSString *)destinationPath;

@end

Swift

protocol RichieURLDownloadFactoryProtocol : NSObjectProtocol

Undocumented

  • Undocumented

    Declaration

    Objective-C

    -(RichieURLDownload *) downloadToMemory;

    Swift

    func downloadToMemory() -> RichieURLDownload
  • Undocumented

    Declaration

    Objective-C

    -(RichieURLDownload *) downloadWithoutStoringDataWithByteRangeStart:(int64_t)byteRangeStart;

    Swift

    func downloadWithoutStoringData(withByteRangeStart byteRangeStart: Int64) -> RichieURLDownload
  • Undocumented

    Declaration

    Objective-C

    -(RichieURLDownload *) downloadToPath:(NSString *)destinationPath;

    Swift

    func download(toPath destinationPath: String) -> RichieURLDownload