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

com.jdroid.java.http.okhttp.ExecuteRequestCommand.kt Maven / Gradle / Ivy

The newest version!
package com.jdroid.java.http.okhttp

import java.io.IOException

class ExecuteRequestCommand : OkHttpCommand() {

    @Throws(IOException::class)
    override fun doExecute(okHttpService: OkHttpService): OkHttpResponseWrapper? {
        val response = okHttpService.client.newCall(okHttpService.request).execute()
        return OkHttpResponseWrapper(response)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy