Post Advices
With this interceptor you can intercept local event actions and execute things after the requested action executes. You can do it globally by using the postHandler()
method or targeted to a specific action post{actionName}()
.
The arguments received by these interceptors are:
event
: The request context referenceaction
: The action name that was intercepted bypostHandler()
eventArguments
: The struct of extra arguments sent to an action if executed viarunEvent()
rc
: The RC referenceprc
: The PRC Reference
Exceptions & Only Lists
You can fine tune these interception methods by leveraging two public properties in the handler:
this.posthandler_only
: A list of actions that thepostHandler()
action will fire ONLY!this.posthandler_except
: A list of actions that thepostHandler()
action will NOT fire on
Last updated