VICacheAction.h 495 B

1234567891011121314151617181920212223
  1. //
  2. // VICacheAction.h
  3. // VIMediaCacheDemo
  4. //
  5. // Created by Vito on 4/21/16.
  6. // Copyright © 2016 Vito. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef NS_ENUM(NSUInteger, VICacheAtionType) {
  10. VICacheAtionTypeLocal = 0,
  11. VICacheAtionTypeRemote
  12. };
  13. @interface VICacheAction : NSObject
  14. - (instancetype)initWithActionType:(VICacheAtionType)actionType range:(NSRange)range;
  15. @property (nonatomic) VICacheAtionType actionType;
  16. @property (nonatomic) NSRange range;
  17. @end