public interface Response<IN,OUT>
Modifier and Type | Method and Description |
---|---|
void |
onError(IN request,
int code,
String msg)
Indicates the inability to provide results.
|
void |
onResult(IN request,
OUT... result)
Provide a set of results.
|