Question

I am planning to implement an azure worker role which can start multiple threads. Each thread may want to read from or write to a storage queue. For different worker role instances, race situations are not the case. But, is it safe to simultaneously access the same queue from different threads running inside the same worker role ?

Was it helpful?

Solution

Azure Queue is thread safe and is accessed using a REST API. MSDN has some reference data.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top