{
  "key": "download",
  "initial": "idle",
  "states": {
    "idle": {
      "on": {
        "START": {
          "downloading": {
            "actions": "initializeCache",
            "cond": "stableConnection"
          }
        }
      }
    },
    "downloading": {
      "on": {
        "PAUSE": "paused",
        "DONE": "finished"
      },
      "activities": "streamChunk"
    },
    "paused": {
      "on": {
        "RESUME": "downloading",
        "CANCEL": "finished"
      }
    },
    "finished": {
      "onEntry": "cleanCache"
    }
  }
}
