Lines Matching refs:subscribers
49 * Threads (subscribers and message subscribers) and callbacks (listeners) publishing, reading, and
76 * Message subscribers, a thread-based observer that relies internally on a FIFO where the event
154 subscribers, and pushes the channel's reference to the subscribers' notification message queue in
367 * Message subscribers will wait for the VDED to finish the message delivery process. So the VDED
389 ZBus always delivers the messages to the listeners and message subscribers. However, there are no
390 message delivery guarantees for subscribers because zbus only sends the notification, but the
402 subscribers. Thus, choose carefully the configurations
405 (delivery guarantee) considering message subscribers. If you want to keep an isolated pool for a
881 * :zephyr:code-sample:`zbus-msg-subscriber` illustrates how to use message subscribers;
893 with subscribers;
900 synchronously or asynchronously. Choosing the proper observer type is crucial. Use subscribers for
902 subscribers (if you need a thread) or listeners (if you need to be lean and fast). In addition to