bossenti commented on code in PR #1994:
URL: https://github.com/apache/streampipes/pull/1994#discussion_r1345264485
##########
streampipes-model/src/main/java/org/apache/streampipes/model/connect/rules/value/AddTimestampRuleDescription.java:
##########
@@ -42,4 +44,14 @@ public String getRuntimeKey() {
public void setRuntimeKey(String runtimeKey) {
this.runtimeKey = runtimeKey;
}
+
+ @Override
+ public void accept(ITransformationRuleVisitor visitor) {
+ visitor.visit(this);
+ }
+
+ @Override
+ public int getRulePriority() {
+ return 100;
Review Comment:
Can we manage priorities somewhere centrally? E.g. via an enum?
With the current way it's hard to assess the individual priority value
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]