-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathorg.desktopspec.JobManager1.Job.xml
More file actions
45 lines (43 loc) · 1.84 KB
/
org.desktopspec.JobManager1.Job.xml
File metadata and controls
45 lines (43 loc) · 1.84 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "https://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.desktopspec.JobManager1.Job">
<property name="Status" type="s" access="read">
<annotation
name="org.freedesktop.DBus.Description"
value="Value of `Status` is one of
`started`, `running`, `finished`,
`suspending`, `suspend`,
`canceled`."
/>
</property>
<method name="Cancel">
<annotation
name="org.freedesktop.DBus.Description"
value="Success call to this method will
change the Status of this Job to `canceled`.
Then after some time this method call return,
this Job will be removed.
Then the signal JobRemoved of org.desktopspec.JobManager1
will be emitted."
/>
</method>
<method name="Suspend">
<annotation
name="org.freedesktop.DBus.Description"
value="Success call to this method will
change the Status of this Job to `suspending`.
Then after some time this method call return,
Status will change to `suspend`."
/>
</method>
<method name="Resume">
<annotation
name="org.freedesktop.DBus.Description"
value="Success call to this method will
Resumes the asynchronous computation.
Then after some time this method call return,
Status will change to `working`."
/>
</method>
</interface>
</node>