Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
//
//  DEFileDownloadProgressData.h
//  DynamicEngine
//
//  Created by Mobile3D on 26/01/15.
//  Copyright (c) 2015 Mobile3D. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface DEFileDownloadProgressData : NSObject

- (instancetype) initWithDownloadTag:(NSString *) downloadTag bytesDownloaded:(long long) bytesDownloaded ofTotalBytes:(long long) totalBytes;

- (NSString *) callbackDataAsString;

@property (nonatomic,readonly) NSString* downloadTag;
@property (nonatomic,readonly) long long bytesDownloaded;
@property (nonatomic,readonly) long long totalBytes;

@end