Vect0rZ / Quic.NET

A .NET C# Implementation of QUIC protocol - Google's experimental transport layer.
BSD 2-Clause "Simplified" License
376 stars 58 forks source link

Add async methods and examples #13

Open circler3 opened 4 years ago

circler3 commented 4 years ago

I add async methods and examples for those who want to use it in async scenarios.

Vect0rZ commented 4 years ago

@circler3 Thank you for your contribution. The change is generally safe to merge, but I will need some time to give it a test and review it locally. If everything is alright, will merge it. One thing I noticed is that the only frame processing method that is async is OnStreamFrameAsync and we might want to update the other ones. This might pollute the QuicConnection class, but I think it's okay in the general case.

Thanks!

GF-Huang commented 1 year ago

Any progress?

laolarou726 commented 1 year ago

@Vect0rZ Any progress for this?