12345678910111213141516171819202122 |
- //
- // QNUploadSourceStream.h
- // QiniuSDK
- //
- // Created by yangsen on 2021/5/10.
- // Copyright © 2021 Qiniu. All rights reserved.
- //
- #import "QNUploadSource.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface QNUploadSourceStream : NSObject <QNUploadSource>
- + (instancetype)stream:(NSInputStream * _Nonnull)stream
- sourceId:(NSString * _Nullable)sourceId
- size:(long long)size
- fileName:(NSString * _Nullable)fileName;
- @end
- NS_ASSUME_NONNULL_END
|