How to get all the observers of a node?

Operating system: Windows
Version: 4.11

How to get all the observers of a node?

The observers aren’t really meant to be operated on externally because they don’t have any well defined meaning except to the code that added them. That is, when one piece of code adds an observer it provides a C++ vtkCommand instance or python callable but these are opaque to any other part of the codebase. Each module should keep track of the observations it adds so that it can cleanly remove them when needed (AddObserver returns a tag that uniquely identifies the observer for that observed vtkObject)