|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Interceptor
Implementers of this interface can be registered in the ProxyMetaClass for notifications about method calls for objects managed by the ProxyMetaClass. Based off the original work in Groovy core, but uses a callback object instead for thread safety
Method Summary | |
---|---|
Object |
afterInvoke(Object object,
String methodName,
Object[] arguments,
Object result)
This code is executed after the method is optionally called. |
Object |
beforeInvoke(Object object,
String methodName,
Object[] arguments,
InvocationCallback callback)
This code is executed before the method is optionally called. |
Method Detail |
---|
Object beforeInvoke(Object object, String methodName, Object[] arguments, InvocationCallback callback)
object
- receiver object for the method callmethodName
- name of the method to callarguments
- arguments to the method callcallback
- The callback object
Object afterInvoke(Object object, String methodName, Object[] arguments, Object result)
object
- 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 called
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |