If I bound a coroutine to a member of the class in the constructor like this:
@bound_co: branch [_some_co]
I later abort it.
@bound_co.abort
Then I want to reinvoke it…
@bound.invoke???
Should I just be invoking the coroutine through the class instance or is there a way to invoke it through the member of the class like this? Thanks!