Class PreprocessChain<T>

java.lang.Object
com.cloudinary.android.preprocess.PreprocessChain<T>
Type Parameters:
T - The type of the resource to execute the processing on (e.g. Bitmap)

public abstract class PreprocessChain<T>
extends java.lang.Object
A preprocess chain to run on resource before uploading. Pass an instance of a populated chain to UploadRequest.preprocess(PreprocessChain). The processing steps will run by the order in which they were added to the chain. Note: The best practice is to use a concrete subclass rather than extend this class. A chain can be used for manipulating and/or validating resources before starting the upload.