Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The groovy script for the listener will be executed when a corresponding even type is executed within FlexDeploy. The editing window has capabilities for undo, redo, find, find and replae, and go to line. There are a variety of context variables and methods available to use in this script. Type ‘Ctrl + space’ in the editor for suggestions on variables and methods that can be used. See more example of listeners on our Sample Event Listeners page.

...

Filter

Event listeners also allow you to filter which events that the listener will process by using groovy script. The groovy script will return true when the listener should process the event and false otherwise. You are able to use all of the Event Context Variables and Methods that can be used in the event listener groovy script. This allows the filter to be very robust and ___ your listener to only process the exact events that you want. For example, you can specify that you want your workflow completed listener to only process a workflow that has failed a deployment on your Dev environment and ignore all other workflow events.

...