KTVHCDataSourceProtocol.h 423 B

12345678910111213141516171819202122232425
  1. //
  2. // KTVHCDataSourceProtocol.h
  3. // KTVHTTPCache
  4. //
  5. // Created by Single on 2017/8/11.
  6. // Copyright © 2017年 Single. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "KTVHCRange.h"
  10. @protocol KTVHCDataSourceProtocol <NSObject>
  11. - (KTVHCRange)range;
  12. - (BOOL)didPrepared;
  13. - (BOOL)didFinished;
  14. - (BOOL)didClosed;
  15. - (void)prepare;
  16. - (void)close;
  17. - (NSData *)readDataOfLength:(NSUInteger)length;
  18. @end