Sha256: cdbb74bf5c4cdbe25736e539259e020d9161eea64f7741c356c964ff86ef5a07
Contents?: true
Size: 1.18 KB
Versions: 24
Compression:
Stored size: 1.18 KB
Contents
<states> <!-- final states are "abandoned" and "finished" (no further observable or setable states) --> <!-- children of setable and observable are source states, their respective children are possible target states --> <setable> <!-- the following states change through external input --> <ready><!-- in this state you can set the following four states --> <ready/> <running/> <simulating/> <abandoned/> </ready> <running><!-- in this state you can set the following state --> <stopping/> </running> <stopping><!-- in this state you can set the following state --> <stopping/> </stopping> <stopped><!-- in this state you can set the following four states --> <running/> <simulating/> <abandoned/> <stopped/> </stopped> </setable> <observable> <!-- the following states change through internal mechanisms --> <running> <stopping/> <finishing/> </running> <simulating> <ready/> <stopped/> </simulating> <finishing> <finished/> </finishing> <stopping> <stopped/> </stopping> <abandoned/> <finished/> </observable> </states>
Version data entries
24 entries across 24 versions & 1 rubygems