-
Enhancement
-
Resolution: Duplicate
-
Major
-
6.2.0.Final, 6.3.0.Beta2
-
None
-
NEW
-
NEW
Can we specify order of CustomShadowVariable listerners?
for example,
@CustomShadowVariable(
variableListenerClass = MyVariableListener1.class,
position=0, // the first listener to call
sources = ...)
@CustomShadowVariable(
variableListenerClass = MyVariableListener2.class,
after=MyVariableListener1.class, // set the listener2 after the listener1
sources = ...)
So we can specify the order of multiple listeners by "position", "after" and "before".
- duplicates
-
PLANNER-252 VariableListeners for shadow variables that are triggered on other shadow variables should be triggered predictably in a smart order
- Resolved