improved app asset management and retrying to acquire

This commit is contained in:
Diego Waxemberg
2015-01-31 20:10:14 -05:00
parent 8e721a9c6a
commit 14f30349a3
7 changed files with 135 additions and 86 deletions
+21
View File
@@ -0,0 +1,21 @@
//
// AppAssetRetriever.h
// Limelight
//
// Created by Diego Waxemberg on 1/31/15.
// Copyright (c) 2015 Limelight Stream. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Host.h"
#import "App.h"
#import "AppAssetManager.h"
@interface AppAssetRetriever : NSOperation
@property (nonatomic) Host* host;
@property (nonatomic) App* app;
@property (nonatomic) NSMutableDictionary* cache;
@property (nonatomic) id<AppAssetCallback> callback;
@end