I have a message queue in a shared system. This queue is accessed by 2 processes that run on 2 other machines. I need to control access to this queue by two processes. So I need a network mutex. How can I achieve this?
I don't think this is supported out of the box in C # .NET, but if I missed something very obvious, call me in the right direction. This question was asked earlier, but the proposed solutions included a database. I have no database in question.
How to use Mutex over a network?
source
share