Multiple threads as a working laser and access to the storage queue

I plan to realize the role of a working azure tree, which can run multiple threads. Each thread may want to read or write to the storage queue. For different instances of a working role, races do not have a place. But is it safe to simultaneously access the same queue from different threads working inside the same working role?

+4
source share
1 answer

Azure Queue is thread safe and accessed using the REST API. MSDN contains some reference data.

+3
source

All Articles