All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.schoolwow.download.domain.progress.GetFileDownloadedSize Maven / Gradle / Ivy

The newest version!
package cn.schoolwow.download.domain.progress;

/**获取当前已下载大小*/
public interface GetFileDownloadedSize {
    /**
     * 获取当前已下载文件大小
     * */
    long getFileDownloadedSize();

    /**
     * 获取m3u8格式已下载分段大小
     * */
    default int getM3u8SuccessCount(){
        return 0;
    }

    /**
     * 获取m3u8格式总分段大小
     * */
    default int getM3u8SegmentSize(){
        return 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy