DownloadStatus.java 708 Bytes
package com.cnlive.downloadfile.download.limit;

public class DownloadStatus {
    /**
     * 下载状态
     */
    public static final String DOWNLOAD = "download";    // 下载中
    public static final String DOWNLOAD_PAUSE = "pause"; // 下载暂停
    public static final String DOWNLOAD_WAIT = "wait";  // 等待下载
    public static final String DOWNLOAD_CANCEL = "cancel"; // 下载取消
    public static final String DOWNLOAD_OVER = "over";    // 下载结束
    public static final String DOWNLOAD_ERROR = "error";  // 下载出错
    public static final String DOWNLOAD_NET_PAUSE = "netpause"; //网络中断状态

    public static final long TOTAL_ERROR = -1;//获取进度失败
}