waitFor property

List<ActionId> waitFor
final

A list actions that you want to wait for them to be executed successfully before executing this action. If anyone of the action fails in then the action will not execute

This can be used to achive consistency between shared stores, as this will ensure when it only execute if the depdencies have executed successfuly.

Implementation

final List<ActionId> waitFor;