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

cn.wandersnail.common.http.download.DownloadService Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
package cn.wandersnail.common.http.download;

import io.reactivex.Observable;
import okhttp3.ResponseBody;
import retrofit2.Response;
import retrofit2.http.GET;
import retrofit2.http.Header;
import retrofit2.http.Streaming;
import retrofit2.http.Url;

/**
 * 下载接口
 * 
 * date: 2019/8/23 15:38
 * author: zengfansheng
 */
public interface DownloadService {
    @Streaming
    @GET
    Observable> download(@Header("RANGE") String offset, @Url String url);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy