Enumeration: AdviceKind
AspectJS • Docs
Enumeration: AdviceKind
Speficies the type of an advice
Enumeration Members
AFTER
AFTER:
"After"
Advice is triggered after the execution of the joinpoint
Defined in
packages/core/src/advice/advice-type.type.ts:28
AFTER_RETURN
AFTER_RETURN:
"AfterReturn"
Advice is triggered after the joinpoint returned sucessfully
Defined in
packages/core/src/advice/advice-type.type.ts:20
AFTER_THROW
AFTER_THROW:
"AfterThrow"
Advice is triggered after the joinpoint thrown an error
Defined in
packages/core/src/advice/advice-type.type.ts:24
AROUND
AROUND:
"Around"
Advice is triggered around the execution of the joinpoint
Defined in
packages/core/src/advice/advice-type.type.ts:16
BEFORE
BEFORE:
"Before"
Advice is triggered before the execution of the joinpoint
Defined in
packages/core/src/advice/advice-type.type.ts:12
COMPILE
COMPILE:
"Compile"
Advice is triggered at compile time (eg: when the annotation is processed)
Defined in
packages/core/src/advice/advice-type.type.ts:8