Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
JHttpResponse com.griddynamics.jagger.invoker.v2.DefaultHttpInvoker.invoke ( JHttpQuery  query,
JHttpEndpoint  endpoint 
) throws InvocationException

Definition at line 32 of file DefaultHttpInvoker.java.

Referenced by CustomHttpInvokerProvider.provide().

32  {
33  Preconditions.checkNotNull(endpoint, "JHttpEndpoint is null!");
34  try {
35  return httpClient.execute(endpoint, query);
36  } catch (Exception e) {
37  throw new InvocationException(format("Exception occurred during execution of query %s to endpoint %s.", query, endpoint), e);
38  }
39  }

Here is the caller graph for this function: