get index of a namespace using its uri
(self, uri)
| 425 | return len(uries) - 1 |
| 426 | |
| 427 | def get_namespace_index(self, uri): |
| 428 | """ |
| 429 | get index of a namespace using its uri |
| 430 | """ |
| 431 | uries = self.get_namespace_array() |
| 432 | return uries.index(uri) |
| 433 | |
| 434 | def get_event_generator(self, etype=None, emitting_node=ua.ObjectIds.Server): |
| 435 | """ |
nothing calls this directly
no test coverage detected