neuecc / UniRx

Reactive Extensions for Unity
MIT License
7.01k stars 895 forks source link

Allow AsyncMessageBroker to recieve data from subscribers ? #456

Open superkerokero opened 4 years ago

superkerokero commented 4 years ago

AsyncMessageBroker seems to be useful in cases where one may need to collect some data from subscribers.

Currently, you can await all subscribers to finish their jobs, then do something like this:

But what I want to do is something like this:

superkerokero commented 4 years ago

I have just submitted a PR #457 to address this issue.