Skip to content

Commit

Permalink
core/utils: add state diagram for StartStopOnceState (smartcontractki…
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Oct 31, 2022
1 parent 76fcd4b commit fba7397
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions core/utils/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# `package utils`

## `StartStopOnce`

```mermaid
stateDiagram-v2
[*] --> Unstarted
Unstarted --> Starting : StartOnce()
Starting --> StartFailed
Starting --> Started
Started --> Stopping : StopOnce()
Stopping --> Stopped
Stopping --> StopFailed
StartFailed --> [*]
Stopped --> [*]
StopFailed --> [*]
```

0 comments on commit fba7397

Please sign in to comment.