I know .NET just introduced Async, but in Linux it is implemented at OS level, does Windows OS has equivalent or is it just simulated on .NET Framework level ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Windows has several asynchronous I/O APIs. Overlapped I/O can be pretty much considered an extension of the regular I/O functions. And for high performance/scalability purposes, there’s I/O Completion Ports.
(.NET’s async has little to do with async I/O specifically. It’s a language-level construct for doing anything asynchronously)