Preparing search index...
The search index is not available
Easemob SDK API Reference
Easemob SDK API Reference
ChatCallback
ChatCallback
Interface ChatCallback
通用的回调函数接口。
interface
ChatCallback
{
onError
?:
(
(
code
:
number
,
error
:
string
)
=>
void
)
;
onProgress
?:
(
(
progress
:
number
)
=>
void
)
;
onSuccess
?:
(
(
)
=>
void
)
;
}
Index
Properties
on
Error?
on
Progress?
on
Success?
Properties
Optional
on
Error
on
Error
?:
(
(
code
:
number
,
error
:
string
)
=>
void
)
发生错误时调用的回调函数,详见
ChatError
。
Type declaration
(
code
,
error
)
:
void
Parameters
code
:
number
错误代码。详见
ChatError
。
error
:
string
错误描述。
Returns
void
Optional
on
Progress
on
Progress
?:
(
(
progress
:
number
)
=>
void
)
刷新进度的回调函数。
Type declaration
(
progress
)
:
void
Parameters
progress
:
number
进度信息。
Returns
void
Optional
on
Success
on
Success
?:
(
(
)
=>
void
)
成功时执行回调函数。
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
on
Error
on
Progress
on
Success
Easemob SDK API Reference
Loading...
通用的回调函数接口。