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
this project is used (among others) in abp.io and is used for client side http-proxy creation based on interfaces.
The poblem I am having is that I would like to "stream" data from the server to the client.
I.e. I would like to return an IAsyncEnumerable<WeatherInfo> GetCurrentWeather(string region)
Unfortunately, Castle.DynamicProxy.AsyncInterceptorBase seems to not recognize the return type IAsyncEnumerable<T> and thus calls ProceedSynchronous[IAsyncEnumerable'1]
I am not too proficient in using Castle DynamicProxy, but if you give me some hints I am willing to try to contribute this as PR!
Any thoughts?
The text was updated successfully, but these errors were encountered:
Hi!
this project is used (among others) in abp.io and is used for client side http-proxy creation based on interfaces.
The poblem I am having is that I would like to "stream" data from the server to the client.
I.e. I would like to return an
IAsyncEnumerable<WeatherInfo> GetCurrentWeather(string region)
Unfortunately,
Castle.DynamicProxy.AsyncInterceptorBase
seems to not recognize the return typeIAsyncEnumerable<T>
and thus callsProceedSynchronous[IAsyncEnumerable'1]
I am not too proficient in using Castle DynamicProxy, but if you give me some hints I am willing to try to contribute this as PR!
Any thoughts?
The text was updated successfully, but these errors were encountered: