I have an observable IObservable<T>
/ ISubject<T>
and want to return that by using SignalR. SignalR has the concept of async streams where you have to return an IAsyncEnumerable<T>
.
How can I transform an IObservable<T>
to an IAsyncEnumerable<T>
?