Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过事件订阅者处理多个事件,而不是制作单独的事件/侦听器。我想将这些事件中的几个排队,但我还没有找到实现这一点的方法。我遵循了官方文档,但没有示例如何选择我想要排队的事件(不是所有订阅者)。
有什么建议么?(请不要单独的事件/听众)
如果有人对此感兴趣,我会在 Event Dispatcher 中找到更深入的解决方案。
在 EventSubscriber 上实现合约 ShouldQueue 的工作方式与单独的 Event/Listener 相同,并将事件排入数据库中。这应该记录在官方网站上。
问候。