Replies: 2 comments 3 replies
-
Sounds like a good idea. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Let's discuss it further |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Like mentioned here #1040 (comment)
What do you think about this:
Is it possible to create and use RUNTIME_names that are used more often, like the vocabulary list, globally somewhere?
Instead of define it in each processor class it is stored like Geo.LAT vocabulary in a separate class.
It is stored in a Class Runtime
and is used like
The advantage of this approach would be,
that the runtime name e.g. with the keep + updateField method, the correct runtime name can be selected more easily.
event.addField(TEMPERATUR_RUNTIME_NAME, temperatur);
event.addField(RUNTIME.TEMPERATUR, temperatur);
Beta Was this translation helpful? Give feedback.
All reactions