Is asynchronous file IO like FileStream.BeginWrite thread safe? If not, then it need to wrap with “SyncLock”, that’s mean it is still blocking thread.
Is asynchronous file IO like FileStream.BeginWrite thread safe? If not, then it need to
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.
FileStream.BeginWritealready starts a new thread to access the files. You don’t need to start theFileStream.BeginWriteon a separate thread (because that will be thread in a thread). On the other hand, multipleFileStream.BeginWritefunctions should not be accessing the same file at the same time.