now request app image on multiple threads

This commit is contained in:
Diego Waxemberg
2015-01-08 21:36:29 -05:00
parent 7cf521272a
commit ccd8b3332e
3 changed files with 40 additions and 23 deletions
+4 -1
View File
@@ -9,6 +9,7 @@
#import <Foundation/Foundation.h>
#import "App.h"
#import "HttpManager.h"
#import "Host.h"
@protocol AppAssetCallback <NSObject>
@@ -18,6 +19,8 @@
@interface AppManager : NSObject
+ (void) retrieveAppAssets:(NSArray*)apps withManager:(HttpManager*)hMan andCallback:(id<AppAssetCallback>)callback;
- (id) initWithHost:(Host*)host andCallback:(id<AppAssetCallback>)callback;
- (void) retrieveAssets:(NSArray*)appList;
- (void) stopRetrieving;
@end