Interface org.as2lib.aop.advice.AfterReturningAdvice

Description

AfterReturningAdvice is invoked after a join point, this advice has been woven-into, has been invoked and returned successfully with a return value, not if it threw an exception.

See Also

Method Index

execute()

Inherited from Advice

Inherited from BasicInterface

Method Detail

execute

public function execute(joinPoint:JoinPoint, returnValue):Void

Executes the actions that were woven-in the given joinPoint.

If you use the proxy returned by the AbstractAfterReturningAdvice#getProxy method to overwrite the actual join point, this method is invoked after the join point was invoked and returned successfully with a return value.

Parameters

joinPointthe join point this advice was woven into
returnValuethe result of the execution of the join point