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

vipera-npm-registry / com.vipera.de.foundation.connector   js

Repository URL to install this package:

Version: 1.2.0 

/ src / ios / DEMotifConnector.framework / Headers / DEFileDownloadProgressData.h

//
//  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