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

Method execute

core/src/main/java/feign/DefaultClient.java:88–92  ·  view source on GitHub ↗
(Request request, Options options)

Source from the content-addressed store, hash-verified

86 }
87
88 @Override
89 public Response execute(Request request, Options options) throws IOException {
90 HttpURLConnection connection = convertAndSend(request, options);
91 return convertResponse(connection, request);
92 }
93
94 Response convertResponse(HttpURLConnection connection, Request request) throws IOException {
95 int status = connection.getResponseCode();

Callers

nothing calls this directly

Calls 2

convertAndSendMethod · 0.95
convertResponseMethod · 0.95

Tested by

no test coverage detected