File: manager-api.txt

package info (click to toggle)
vvmd 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 828 kB
  • sloc: ansic: 7,815; cpp: 138; xml: 86; sh: 38; python: 6; makefile: 4
file content (30 lines) | stat: -rw-r--r-- 877 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Manager hierarchy
=================

Service		org.kop316.vvm
Interface	org.kop316.vvm.Manager
Object path	/org/kop316/vvm

Methods		array{object,dict} GetServices()

			Get an array of service objects and properties
			that represents the currently available services.

			This method call should only be used once when an
			application starts up.  Further service additions
			and removal shall be monitored via ServiceAdded and
			ServiceRemoved signals.

			Possible Errors: [service].Error.InvalidArguments

Signals		ServiceAdded(object path, dict properties)

			Signal that is sent when a new service is added.  It
			contains the object path of new service and also its
			properties.

		ServiceRemoved(object path)

			Signal that is sent when a service has been removed.
			The object path is no longer accessible after this
			signal and only emitted for reference.