Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
Invoker CustomHttpInvokerProvider.provide ( )

Definition at line 38 of file CustomHttpInvokerProvider.java.

References com.griddynamics.jagger.invoker.v2.DefaultHttpInvoker.invoke().

38  {
39  return new DefaultHttpInvoker() {
40  @Override
41  public JHttpResponse invoke(JHttpQuery query, JHttpEndpoint endpoint) throws InvocationException {
42 
43  if (verbose) {
44  log.info("in invoke method of custom http invoker...");
45  }
46 
47  return super.invoke(query, endpoint);
48  }
49  };
50  }

Here is the call graph for this function: