-
public interface ProducerContextCallbacksCallbacks that are called when something changes in a request sequence.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonCancellationRequested()Method that is called when a client cancels the request. abstract UnitonIsPrefetchChanged()Method that is called when a request is no longer a prefetch, or vice versa. abstract UnitonIsIntermediateResultExpectedChanged()Method that is called when intermediate results start or stop being expected. abstract UnitonPriorityChanged()Method that is called when the priority of the request changes. -
-
Method Detail
-
onCancellationRequested
abstract Unit onCancellationRequested()
Method that is called when a client cancels the request.
-
onIsPrefetchChanged
abstract Unit onIsPrefetchChanged()
Method that is called when a request is no longer a prefetch, or vice versa.
-
onIsIntermediateResultExpectedChanged
abstract Unit onIsIntermediateResultExpectedChanged()
Method that is called when intermediate results start or stop being expected.
-
onPriorityChanged
abstract Unit onPriorityChanged()
Method that is called when the priority of the request changes.
-
-
-
-