Handler is the representation of a D-Bus Application. The Handler must have a way to lookup objects given an ObjectPath. The returned object must implement the ServerObject interface.
| 12 | // an ObjectPath. The returned object must implement the |
| 13 | // ServerObject interface. |
| 14 | type Handler interface { |
| 15 | LookupObject(path ObjectPath) (ServerObject, bool) |
| 16 | } |
| 17 | |
| 18 | // ServerObject is the representation of an D-Bus Object. |
| 19 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…