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

Method _browse_next

opcua/common/node.py:374–382  ·  view source on GitHub ↗
(self, results)

Source from the content-addressed store, hash-verified

372 return references
373
374 def _browse_next(self, results):
375 references = results[0].References
376 while results[0].ContinuationPoint:
377 params = ua.BrowseNextParameters()
378 params.ContinuationPoints = [results[0].ContinuationPoint]
379 params.ReleaseContinuationPoints = False
380 results = self.server.browse_next(params)
381 references.extend(results[0].References)
382 return references
383
384 def get_referenced_nodes(self, refs=ua.ObjectIds.References, direction=ua.BrowseDirection.Both, nodeclassmask=ua.NodeClass.Unspecified, includesubtypes=True):
385 """

Callers 1

get_referencesMethod · 0.95

Calls 1

browse_nextMethod · 0.80

Tested by

no test coverage detected