-
public interface GraphRequestBatch.CallbackSpecifies the interface that consumers of the RequestBatch class can implement in order to be notified when the entire batch completes execution. It will be called after all per-Request callbacks are called.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonBatchCompleted(GraphRequestBatch batch)The method that will be called when a batch completes. -
-
Method Detail
-
onBatchCompleted
abstract Unit onBatchCompleted(GraphRequestBatch batch)
The method that will be called when a batch completes.
- Parameters:
batch- the RequestBatch containing the Requests which were executed
-
-
-
-