Package 

Interface FakeImageLoaderEngine.OptionalInterceptor


  • 
    public interface FakeImageLoaderEngine.OptionalInterceptor
    
                        

    An Interceptor that can either:

    • Return an ImageResult so no subsequent interceptors are called.

    • Return null to delegate to the next OptionalInterceptor in the list.

    • Optionally, call Interceptor.Chain.proceed to call through to the ImageLoader's real interceptor chain. Typically, this will map, fetch, and decode the data using the image loader's real image engine.

    • Method Summary

      Modifier and Type Method Description
      abstract ImageResult intercept(Interceptor.Chain chain)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • intercept

         abstract ImageResult intercept(Interceptor.Chain chain)