Package 

Interface Fetcher.Factory

    • Method Summary

      Modifier and Type Method Description
      abstract Fetcher create(T data, Options options, ImageLoader imageLoader) Return a Fetcher that can fetch data or 'null' if this factory cannot create a fetcher for the data.
      • Methods inherited from class java.lang.Object

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

      • create

         abstract Fetcher create(T data, Options options, ImageLoader imageLoader)

        Return a Fetcher that can fetch data or 'null' if this factory cannot create a fetcher for the data.

        Parameters:
        data - The data to fetch.
        options - A set of configuration options for this request.
        imageLoader - The ImageLoader that's executing this request.