alfert / reaxive

Reactive Extensions for Elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generators are not cancelable

alfert opened this issue · comments

Generators such as delay_start provide an unsubscribe callback which sends :cancel to the generator process. But this message is nowhere received.

Using the terminate callback of Rx.Impl to call all sources, which are Disposables is doing the trick. Works now.