Sha256: a2673f82e6f41c7c3a703f43549dfb4de5debab54d378ca14828e0662445c3fa
Contents?: true
Size: 1.19 KB
Versions: 59
Compression:
Stored size: 1.19 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/> <replaying/> <abandoned/> </ready> <running><!-- in this state you can set the following state --> <stopping/> </running> <stopped><!-- in this state you can set the following four states --> <running/> <simulating/> <replaying/> <abandoned/> <stopped/> </stopped> </setable> <observable> <!-- the following states change through internal mechanisms --> <running> <stopping/> <finishing/> </running> <simulating> <ready/> <stopped/> </simulating> <replaying> <stopping/> <finishing/> </replaying> <finishing> <finished/> </finishing> <stopping> <stopped/> </stopping> <abandoned/> <finished/> </observable> </states>
Version data entries
59 entries across 59 versions & 1 rubygems