The System.Reactive.dll adds a class AsyncLock to System.Concurrency.
It has a single instance method, Wait, that takes an Action.
The documentation page I found just tells it it pre-release documentation,
so I ask here: What does this class do?
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.
Looks like some sort of thread-safe queue that executes actions in sequential order. I see it’s used in RX’s schedulers.
You might wish to confirm with the RX team.