Hi, I have some long-running 3rd party code where you can register a callback that’ll get called once progress happens. (i.e. often)
I want to be able to kill the job. The call to this 3rd party code is inside a task, so when I replace the 3rd-party code with a loop that yields, it would work. Is it somehow possible to yield once that callback gets called? Or any other way to force the 3rd party code to yield sometimes? Best, philipp
