MCPcopy Index your code
hub / github.com/OpenFeign/feign / execute

Method execute

okhttp/src/main/java/feign/okhttp/OkHttpClient.java:177–184  ·  view source on GitHub ↗
(feign.Request input, feign.Request.Options options)

Source from the content-addressed store, hash-verified

175 }
176
177 @Override
178 public feign.Response execute(feign.Request input, feign.Request.Options options)
179 throws IOException {
180 okhttp3.OkHttpClient requestScoped = getClient(options);
181 Request request = toOkHttpRequest(input);
182 Response response = requestScoped.newCall(request).execute();
183 return toFeignResponse(response, input).toBuilder().request(input).build();
184 }
185
186 @Override
187 public CompletableFuture<feign.Response> execute(

Callers

nothing calls this directly

Calls 7

getClientMethod · 0.95
toOkHttpRequestMethod · 0.95
toFeignResponseMethod · 0.95
toBuilderMethod · 0.80
executeMethod · 0.65
buildMethod · 0.45
requestMethod · 0.45

Tested by

no test coverage detected