Files
youle_app_ios/Pods/Qiniu/QiniuSDK/Storage/QNUploadSourceStream.h

23 lines
484 B
Objective-C

//
// 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