You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
867 B
Kotlin

package com.common.commonlibtest.manager
import com.common.commonlib.net.BaseObserve
import com.common.commonlib.net.callback.RequestCallBack
import com.common.commonlibtest.bean.CollectionResponse
import io.reactivex.rxjava3.core.Observable
import retrofit2.http.GET
import retrofit2.http.Headers
import retrofit2.http.Path
class CollectionLoader : BaseObserve<CollectionLoader.CollectionApi>(CollectionApi::class.java) {
fun getCollections(pageName: Int, callBack: RequestCallBack<CollectionResponse>) {
observe(api.getCollections(pageName), callBack)
}
interface CollectionApi {
@Headers("baseurl:debug1")
@GET("/lg/collect/list/{pageNum}/json")
fun getCollections(@Path("pageNum") pageNum: Int): Observable<CollectionResponse>
}
override fun getType(): String {
return LoaderType.LOGIN.type
}
}