Package 

Class ImagePipelineConfig

  • All Implemented Interfaces:
    com.facebook.imagepipeline.core.ImagePipelineConfigInterface

    
    public final class ImagePipelineConfig
     implements ImagePipelineConfigInterface
                        

    Main configuration class for the image pipeline library.

    To use: ImagePipelineConfig config = ImagePipelineConfig.newBuilder() .setXXX(xxx) .setYYY(yyy) .build(); ImagePipelineFactory factory = new ImagePipelineFactory(config); ImagePipeline pipeline = factory.getImagePipeline(); *

    This should only be done once per process.