(self, status)
| 182 | self.logger.error("Event subscription created but handler has no event_notification method") |
| 183 | |
| 184 | def _call_status(self, status): |
| 185 | try: |
| 186 | self._handler.status_change_notification(status.Status) |
| 187 | except Exception: |
| 188 | self.logger.exception("Exception calling status change handler") |
| 189 | |
| 190 | def subscribe_data_change(self, nodes, attr=ua.AttributeIds.Value, queuesize=0): |
| 191 | """ |
no test coverage detected