MCPcopy Create free account
hub / github.com/FreeOpcUa/python-opcua / get_event_notifier

Method get_event_notifier

opcua/common/node.py:118–123  ·  view source on GitHub ↗

Get the event notifier attribute of the node as a set of EventNotifier enum values.

(self)

Source from the content-addressed store, hash-verified

116 return ua.AccessLevel.parse_bitfield(result.Value.Value)
117
118 def get_event_notifier(self):
119 """
120 Get the event notifier attribute of the node as a set of EventNotifier enum values.
121 """
122 result = self.get_attribute(ua.AttributeIds.EventNotifier)
123 return ua.EventNotifier.parse_bitfield(result.Value.Value)
124
125 def set_event_notifier(self, values):
126 """

Calls 2

get_attributeMethod · 0.95
parse_bitfieldMethod · 0.80