yuxc
2024-03-12 aca35d5ae9940a77ffe3daea2eeeb48a1cd124f3
1
2
3
4
5
6
7
8
9
10
11
12
13
<task-lifecycle initial="open">
  <state name="open">
    <transition name="complete" to="completed" />
    <transition name="suspend" to="suspended" />
    <transition name="cancel" to="cancelled" />
  </state>
  <state name="suspended">
    <transition name="resume" to="open" />
    <transition name="cancel" to="cancelled" />
  </state>
  <state name="cancelled" />
  <state name="completed" />
</task-lifecycle>