Pre Advices
Last updated
Last updated
With this interceptor you can intercept local event actions and execute things before the requested action executes. You can do it globally by using the preHandler()
method or targeted to a specific action pre{actionName}()
.
The arguments received by these interceptors are:
event
: The request context reference
action
: The action name that was intercepted
eventArguments
: The struct of extra arguments sent to an action if executed via runEvent()
rc
: The RC reference
prc
: The PRC Reference
You can fine tune these interception methods by leveraging two public properties in the handler:
this.prehandler_only
: A list of actions that the preHandler()
action will fire ONLY!
this.prehandler_except
: A list of actions that the preHandler()
action will NOT fire on