package cc.shinichi.library.view.listener 
 | 
  
 | 
import android.app.Activity 
 | 
  
 | 
/** 
 | 
 * @author 工藤 
 | 
 * @email qinglingou@gmail.com 
 | 
 * cc.shinichi.library.view.listener 
 | 
 * create at 2018/12/19  16:23 
 | 
 * description: 下载结果回调 
 | 
 */ 
 | 
abstract class OnDownloadListener { 
 | 
    abstract fun onDownloadStart(activity: Activity, position: Int) 
 | 
    abstract fun onDownloadSuccess(activity: Activity, position: Int) 
 | 
    abstract fun onDownloadFailed(activity: Activity, position: Int) 
 | 
} 
 |