3.0-enterprise
This commit is contained in:
parent
3527c80e7b
commit
cfc94c06da
@ -144,7 +144,7 @@ public class UploadFileListener: NSObject, Open_im_sdk_callbackUploadFileCallbac
|
||||
values["id"] = id
|
||||
values["partHash"] = partsHash
|
||||
values["fileHash"] = fileHash
|
||||
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "hashPartComplete", errCode: nil, errMsg: nil, data: values);<#code#>
|
||||
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "hashPartComplete", errCode: nil, errMsg: nil, data: values)
|
||||
}
|
||||
|
||||
public func hashPartProgress(_ index: Int32, size: Int64, partHash: String?) {
|
||||
@ -193,6 +193,6 @@ public class UploadFileListener: NSObject, Open_im_sdk_callbackUploadFileCallbac
|
||||
values["index"] = index
|
||||
values["partSize"] = partSize
|
||||
values["partHash"] = partHash
|
||||
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "uploadPartComplete", errCode: nil, errMsg: nil, data: values);<#code#>
|
||||
CommonUtil.emitEvent(channel: channel, method: "uploadFileListener", type: "uploadPartComplete", errCode: nil, errMsg: nil, data: values)
|
||||
}
|
||||
}
|
||||
|
@ -1,32 +0,0 @@
|
||||
class OnPutFileListener {
|
||||
Function(String putID, String hash, int total)? onHashComplete;
|
||||
Function(String putID, int current, int total)? onHashProgress;
|
||||
Function(String putID, int size)? onOpen;
|
||||
Function(String putID, int total, int putType)? onPutComplete;
|
||||
Function(String putID, int save, int current, int total)? onPutProgress;
|
||||
Function(String putID, int current, int total)? onPutStart;
|
||||
|
||||
void hashComplete(String putID, String hash, int total) {
|
||||
onHashComplete?.call(putID, hash, total);
|
||||
}
|
||||
|
||||
void hashProgress(String putID, int current, int total) {
|
||||
onHashProgress?.call(putID, current, total);
|
||||
}
|
||||
|
||||
void open(String putID, int size) {
|
||||
onOpen?.call(putID, size);
|
||||
}
|
||||
|
||||
void putComplete(String putID, int total, int putType) {
|
||||
onPutComplete?.call(putID, total, putType);
|
||||
}
|
||||
|
||||
void putProgress(String putID, int save, int current, int total) {
|
||||
onPutProgress?.call(putID, save, current, total);
|
||||
}
|
||||
|
||||
void putStart(String putID, int current, int total) {
|
||||
onPutStart?.call(putID, current, total);
|
||||
}
|
||||
}
|
@ -560,7 +560,7 @@ class IMManager {
|
||||
/// 获取当前登录用户信息
|
||||
Future<UserInfo> getLoginUserInfo() async => userInfo;
|
||||
|
||||
///
|
||||
///[id] 跟 [OnUploadFileListener] id一致,区分是哪个文件的回调
|
||||
Future uploadFile({
|
||||
required String id,
|
||||
required String filePath,
|
||||
|
Loading…
x
Reference in New Issue
Block a user