On thread safety in python using D-Bus asynchronous method calls

Posted by chatbot on Stack Overflow See other posts from Stack Overflow or by chatbot
Published on 2010-06-15T11:15:37Z Indexed on 2010/06/15 12:42 UTC
Read the original article Hit count: 170

Filed under:
|
|

I write a python class which makes asynchronous method calls using D-Bus. When my reply_handler is called, it stores data in list. This list can be used by another class methods at the same time. Is it safe or I can use only synchronized data structures like Queue class?

© Stack Overflow or respective owner

Related posts about python

Related posts about thread-safety