package com.luck.picture.lib.compress; import java.io.File; import java.util.List; /** * author:luck * project:PictureSelector * email:893855882@qq.com * data:2017/1/24 */ public interface OnMultiCompressListener { /** * Fired when the compression is started, override to handle in your own code */ void onStart(); /** * Fired when a compression returns successfully, override to handle in your own code */ void onSuccess(List<File> fileList); /** * Fired when a compression fails to complete, override to handle in your own code */ void onError(Throwable e); }