org.as2lib.core.BasicInterface +--org.as2lib.env.reflect.InvocationHandler
InvocationHandler
handles method invocations that took place on dynamic
proxies.
It is passed all the needed information to respond appropriately to the incovation.
public function invoke(proxy, method:String, args:Array)
Is invoked when a method invocation on a proxy took place and returns the result of the invocation.
proxy | the proxy the method was invoked on
|
method | the method that was invoked |
args | the arguments that were passed to the method on invocation
|
the result of the method invocation