How to recognize a uaObject is Event or not? And how to get the EventType of the event? #956
simonalexs
started this conversation in
General
Replies: 1 comment 3 replies
-
Yes I think checking the Type Definition. It should already be narrowed down, though, because Object instances for events don’t appear in the general address space. EventFactory has its own NodeManager that all instances and their members are stored in until the event is deleted. |
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
-
UaObjectNode objectNode = addressSpace.getObjectNode(NodeId.parse("ns=2;s=eventObject"));
I try to browse all the RootNodes, and now I want to recognize the objectNode is Event or not.How can i do this?
Use the "TypeDefinition" of the object?Or use "NotifierOf"(one of the References)?
If use "NotifierOf", how can i get the "NotifierOf" info? I found in all source code, but didn't find usefulInfo.
Beta Was this translation helpful? Give feedback.
All reactions