You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
TestPayload[]payloads=await AsyncMessageBroker.Default.PublishAsync<TestPayload,TestMessage>(new TestMessage());// Do something with awaited payloads
Debug.Log(payloads[0].Value);
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:
The text was updated successfully, but these errors were encountered: