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

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

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


import java.io.IOException;

import okhttp3.Response;

public class ExecuteRequestCommand extends OkHttpCommand {

	@Override
	protected OkHttpResponseWrapper doExecute(OkHttpService okHttpService) throws IOException {
		Response response = okHttpService.client.newCall(okHttpService.request).execute();
		return new OkHttpResponseWrapper(response);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy