On Mon, May 18, 2009 at 11:45 AM, Dianne Hackborn <[email protected]> wrote: > On Mon, May 18, 2009 at 8:18 AM, Marco Nelissen <[email protected]> wrote: >> >> ContentProvider is single threaded, so it'll automatically be >> synchronized, but you'd have the same issue with the various threads >> having to wait for access. > > Actually ContentProvider is NOT single-threaded.
I stand corrected, though note that access to the sqlite database itself is protected by a lock, so those multiple writers and/or readers will still be waiting for each other. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

