MCPcopy
hub / github.com/square/retrofit / createRawCall

Method createRawCall

retrofit/src/main/java/retrofit2/OkHttpCall.java:210–216  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

208 }
209
210 private okhttp3.Call createRawCall() throws IOException {
211 okhttp3.Call call = callFactory.newCall(requestFactory.create(instance, args));
212 if (call == null) {
213 throw new NullPointerException("Call.Factory returned null.");
214 }
215 return call;
216 }
217
218 Response<T> parseResponse(okhttp3.Response rawResponse) throws IOException {
219 ResponseBody rawBody = rawResponse.body();

Callers 2

getRawCallMethod · 0.95
enqueueMethod · 0.95

Calls 1

createMethod · 0.45

Tested by

no test coverage detected