| java.lang.Object | ||
| ↳ | com.facebook.imagepipeline.producers.InternalProducerListener | |
| ↳ | com.facebook.imagepipeline.producers.InternalRequestListener | |
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| InternalRequestListener(RequestListener requestListener, RequestListener2 requestListener2) | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| void |
onRequestCancellation(ProducerContext producerContext)
Called after the request is cancelled.
| ||||||||||
| void |
onRequestFailure(ProducerContext producerContext, Throwable throwable)
Called after failure to complete the request (some producer failed).
| ||||||||||
| void |
onRequestStart(ProducerContext producerContext)
Called when request is about to be submitted to the Orchestrator's executor queue.
| ||||||||||
| void |
onRequestSuccess(ProducerContext producerContext)
Called after successful completion of the request (all producers completed successfully).
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.facebook.imagepipeline.producers.InternalProducerListener
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.facebook.imagepipeline.listener.RequestListener2
| |||||||||||
From interface
com.facebook.imagepipeline.producers.ProducerListener2
| |||||||||||
Called after the request is cancelled.
| producerContext | the producer context for the image |
|---|
Called after failure to complete the request (some producer failed).
| producerContext | the producer context for the image |
|---|---|
| throwable | cause of failure |
Called when request is about to be submitted to the Orchestrator's executor queue.
| producerContext | the producer context for the image |
|---|
Called after successful completion of the request (all producers completed successfully).
| producerContext | the producer context for the image |
|---|