SQLite, Content Providers, & Thread Safety
A common source of confusion when implementing ContentProvider
s is that of thread-safety.
We all know that any potentially expensive query should be asynchronous so as not to block
the UI thread, but when, if ever, is it OK to make calls to the ContentProvider
from
multiple threads?