OSSInputStreamHelper.h 462 B

12345678910111213141516171819202122
  1. //
  2. // OSSInputStreamHelper.h
  3. // AliyunOSSSDK
  4. //
  5. // Created by 怀叙 on 2017/12/7.
  6. // Copyright © 2017年 阿里云. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface OSSInputStreamHelper : NSObject
  11. @property (nonatomic, assign) uint64_t crc64;
  12. - (instancetype)initWithFileAtPath:(nonnull NSString *)path;
  13. - (instancetype)initWithURL:(nonnull NSURL *)URL;
  14. - (void)syncReadBuffers;
  15. @end
  16. NS_ASSUME_NONNULL_END