aliyun / aliyun-openapi-net-sdk

Alibaba Cloud SDK for .NET
https://www.nuget.org/profiles/aliyun-openapi-sdk
Other
541 stars 625 forks source link

Does DefaultAcsClient thead safe (concurrent call) like System.Net.Http.HttpClient ? #293

Closed GF-Huang closed 5 years ago

GF-Huang commented 5 years ago

If not, please add this feature. :)

doublnt commented 5 years ago

DefaultAcsClient is not like HttpClient, the network library we used in sdk is HttpWebRequest. GetAcsResponse is not thread safe.

GF-Huang commented 5 years ago

Thanks your quick reply.

Does it still not support asynchronous?

doublnt commented 5 years ago

It will be support asynchronous in the future version. Currently, the feature is on developing. BTW, the thread safe feature is also in developing.

GF-Huang commented 5 years ago

Got it. Thanks.