Hi ! I have a question regarding the implementation of the library: will there be any plans for async API for Excel writer? This may seem exotic but it's actually very useful: let's say you want to write an excel file to some external location (for example, AWS S3). You have implemented a new AmazonS3Stream (derived from Stream) for that purpose which sends some requests from time to time using AWS API. Those requests are asynchronous which means that whole new AmazonS3Stream is asynchronous as well. But async Stream API is not supported by the library, so you will need to put GetAwaiter().GetResult() everywhere, which is not very nice :(
So, what would you think if we introduce that into the library? I can help if help is needed.
Hi @mzhavoronkov ,
that definitely makes sense! Kestrel-based writers may benefit from this too.
Thanks for your suggestion, I'll think about it.
Salvo
Hi ! I have a question regarding the implementation of the library: will there be any plans for async API for Excel writer? This may seem exotic but it's actually very useful: let's say you want to write an excel file to some external location (for example,
AWS S3
). You have implemented a newAmazonS3Stream
(derived from Stream) for that purpose which sends some requests from time to time usingAWS API
. Those requests are asynchronous which means that whole newAmazonS3Stream
is asynchronous as well. But asyncStream
API is not supported by the library, so you will need to putGetAwaiter().GetResult()
everywhere, which is not very nice :(So, what would you think if we introduce that into the library? I can help if help is needed.