Interface BatchCallback
-
public interface BatchCallback
Callback interface for a batch request. Used in conjunction with theAerisCommunicationTask
, which handles threading for a request and then passed the response back to this callback.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onBatchResponse(AerisBatchResponse response)
Method that will be called after an task has finished executing.
-
-
-
Method Detail
-
onBatchResponse
void onBatchResponse(AerisBatchResponse response)
Method that will be called after an task has finished executing. Network failures and other failures will still return an AerisBatchResponse.- Parameters:
response
- The response from the request.
-
-