gpt4 book ai didi

java - EventBus 粘帖调用一次

转载 作者:行者123 更新时间:2023-11-30 00:41:05 30 4
gpt4 key购买 nike

我使用 greenrobot 作为 eventbus 来发布一些粘性事件。一切正常,当我打开应用程序时,ex。显示的内容表明粘帖工作正常。

但是当我关闭应用程序并打开它第二次、第三次……时,没有前任。显示内容,这意味着尚未发布粘性事件。Sticky 事件仅发布一次!为什么?是正常现象还是bug?

我在 AsyncTaskonPostExecute 中使用下面的代码。

EventBus.getDefault().postSticky(new SliderBusModel(SlideID,SlideImage,SlideType,SlideTitle));

最佳答案

根据文档,只有最后一个粘性事件保留在内存中,直到您通过调用 removeStickyEvent(stickyEvent) 手动删除它,即一次只有一个粘性事件会保留在内存中。如果您在内存中已经有一个粘性事件并且您发布另一个粘性事件,那么前一个将丢失。如果您现有的事件被其他事件删除,请检查您的代码。阅读下文:

Some events carry information that is of interest after the event is posted. For example, an event signals that some initialization is complete. Or if you have some sensor or location data and you want to hold on the most recent values. Instead of implementing your own caching, you can use sticky events. So EventBus keeps the last sticky event of a certain type in memory. Then the sticky event can be delivered to subscribers or queried explicitly.

关于java - EventBus 粘帖调用一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42578794/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com