Skip to content

Resume

Name - Description Default Type
<input> Any
<output> Any
Wire The wire to resume. None WireString&Wire

Resumes another wire (previously suspending using Suspend).

Examples

1
2
3
4
5
6
(defwire hello
  (Msg "Hello")
  (SwitchTo))

(SwitchTo hello)
(Msg "World")
[info] [hello] Hello
[info] [shards/General/Resume/Resume.edn] World