Class org.as2lib.aop.advice.DynamicAroundAdvice

org.as2lib.core.BasicClass
   +--org.as2lib.aop.advice.AbstractAdvice
      +--org.as2lib.aop.advice.AbstractAroundAdvice
         +--org.as2lib.aop.advice.DynamicAroundAdvice

Implemented Interfaces

AroundAdvice

Description

DynamicAroundAdvice executes a callback at the weave-in point.

Field Index

Inherited from AbstractAdvice

AFTER, AFTER_RETURNING, AFTER_THROWING, AROUND, BEFORE

Method Index

new DynamicAroundAdvice()

execute()

Inherited from AbstractAdvice

captures(), getAspect(), getPointcut(), getProxy()

Inherited from BasicClass

toString()

Constructor Detail

DynamicAroundAdvice

public function DynamicAroundAdvice()

Method Detail

execute

public function execute(joinPoint:JoinPoint, args:Array)

Executes the callback passing the passed joinPoint and args.

Parameters

joinPointthe join point this advice was woven into
argsthe arguments passed to the join point

Return

the result of the execution of the callback

Specified By

execute() in org.as2lib.aop.advice.AroundAdvice