如何创建线程安全的ContentProvider?

发布于 2024-12-05 08:44:12 字数 497 浏览 0 评论 0原文

Android 文档说

ContentProvider方法可以从各种ContentResolver调用 不同进程和线程中的对象,必须实现它们 以线程安全的方式

我在 Stackoverflow 上找到了这篇文章 Android - sqlite 内容提供程序和多线程 这说它已经是线程安全的了?

那么,只是想知道如何创建线程安全的 ContentProvider ?如果我使插入/更新/删除方法同步就足够了

public synchronized Uri insert (Uri uri, ContentValues values) {

}

Android documentation says

ContentProvider methods can be called from various ContentResolver
objects in different processes and threads, they must be implemented
in a thread-safe manner

And I found this post on Stackoverflow
Android - sqlite content providers and multithreading
which says it's thread safe already ??

So, Just wondering how to create a thread-safe ContentProvider ? Is it enough if I make the insert/update/delete methods syncronized

public synchronized Uri insert (Uri uri, ContentValues values) {

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的憧憬 2024-12-12 08:44:12

您可以使每个方法都同步但在执行之前请确保这是绝对必要的。如果底层数据源已经是线程安全的,那么使方法同步的成本可能会很高。有关此主题的更多信息,请参阅我的博客文章信息。

You could make every method synchronized, but make sure it is absolutely necessary before you do. In cases where the underlying data source is already thread-safe making the methods synchronized could be costly. See my blog post on this topic for more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文