Last active
October 13, 2024 18:50
-
-
Save MattRix/45e3a2476d00c971f769e14268d4a70d to your computer and use it in GitHub Desktop.
Cancelable Spawned Coroutines in Verse (advanced version)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#> Usage | |
MyRoutine := SpawnRoutine(SomeLongRunningTask) | |
MyRoutine.Cancel() | |
SpawnRoutine<public>(Func : type{_()<suspends>:void}):routine = | |
Routine := routine{Func := Func} | |
Routine.Start() | |
return Routine | |
routine<public> := class(): | |
Func<public> : type{_()<suspends>:void} | |
Event<protected> : event() = event(){} | |
var MaybeTask<protected> : ?task(void) = false | |
var _IsRunning<protected> : logic = false | |
Start<internal>():void = | |
Task := spawn {RunRoutine()} | |
set MaybeTask = option {Task} | |
RunRoutine<protected>()<suspends>: void = | |
set _IsRunning = true | |
race: | |
Func() | |
Event.Await() | |
set _IsRunning = false | |
Cancel<public>():void = Event.Signal() | |
GetTask<public>()<decides><transacts>:task(void) = MaybeTask? | |
IsRunning<public>()<decides><transacts>:void = _IsRunning? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment