Package io.rong.imlib
Interface IRongCoreCallback.PageResultCallback
-
- All Implemented Interfaces:
public interface IRongCoreCallback.PageResultCallback<T>
泛型类,用于 API 中功能的回调处理。
-
-
Method Summary
Modifier and Type Method Description abstract void
)>onSuccess(PagingQueryResult<T> result)
成功时回调。 abstract void
onError(IRongCoreEnum.CoreErrorCode e)
错误时回调。 void
onFail(int errorCode)
void
onFail(IRongCoreEnum.CoreErrorCode coreErrorCode)
void
)>onCallback(PagingQueryResult<T> t)
-
-
Method Detail
-
onSuccess
abstract void )>onSuccess(PagingQueryResult<T> result)
成功时回调。
- Parameters:
result
- 分页请求结果。
-
onError
abstract void onError(IRongCoreEnum.CoreErrorCode e)
错误时回调。
- Parameters:
e
- 错误代码。
-
onFail
void onFail(int errorCode)
-
onFail
void onFail(IRongCoreEnum.CoreErrorCode coreErrorCode)
-
onCallback
void )>onCallback(PagingQueryResult<T> t)
-
-
-
-