groovy.lang
public class BenchmarkInterceptor extends java.lang.Object implements Interceptor
| Modifier and Type | Field and Description |
|---|---|
protected java.util.Map |
calls |
| Constructor and Description |
|---|
BenchmarkInterceptor() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
afterInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments,
java.lang.Object result)
This code is executed after the method is optionally called.
|
java.lang.Object |
beforeInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments)
This code is executed before the method is optionally called.
|
boolean |
doInvoke() |
java.util.Map |
getCalls() |
void |
reset() |
java.util.List |
statistic() |
public java.util.Map getCalls()
public void reset()
public java.lang.Object beforeInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments)
InterceptorbeforeInvoke in interface Interceptorobject - receiver object for the method callmethodName - name of the method to callarguments - arguments to the method callpublic java.lang.Object afterInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments,
java.lang.Object result)
InterceptorafterInvoke in interface Interceptorobject - receiver object for the called methodmethodName - name of the called methodarguments - arguments to the called methodresult - result of the executed method call or result of beforeInvoke if method was not calledpublic boolean doInvoke()
doInvoke in interface Interceptorpublic java.util.List statistic()