public interface IParameterEventListener
| Modifier and Type | Method and Description |
|---|---|
void |
onFail(int id,
ResultCode errorCode)
Called when a parameter request fails.
|
void |
onFinish(int id)
Called when a parameter request is finished.
|
void |
onReceive(int id,
BaseParam baseParam)
Called when a parameter is received.
|
void onReceive(int id,
BaseParam baseParam)
id - The ID of the request.baseParam - The BaseParam object associated with the event.void onFail(int id,
ResultCode errorCode)
id - The ID of the request.errorCode - The ResultCode associated with the failure.void onFinish(int id)
id - The ID of the request.