aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src
diff options
context:
space:
mode:
authorDion Dokter <[email protected]>2022-10-05 15:15:03 +0200
committerDion Dokter <[email protected]>2022-10-05 15:15:03 +0200
commit530182d6683531f7c259448e6c54c866f35837c7 (patch)
tree6947bd5fa997cf3c00a1641567235b3b7880c5b9 /embassy-sync/src
parent94606833aa1ea5404cc8780ce233e07ecaa57b72 (diff)
Forgot to add space function to immediate publisher
Diffstat (limited to 'embassy-sync/src')
-rw-r--r--embassy-sync/src/pubsub/publisher.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/embassy-sync/src/pubsub/publisher.rs b/embassy-sync/src/pubsub/publisher.rs
index faa67d947..e1edc9eb9 100644
--- a/embassy-sync/src/pubsub/publisher.rs
+++ b/embassy-sync/src/pubsub/publisher.rs
@@ -123,6 +123,14 @@ impl<'a, PSB: PubSubBehavior<T> + ?Sized, T: Clone> ImmediatePub<'a, PSB, T> {
123 pub fn try_publish(&self, message: T) -> Result<(), T> { 123 pub fn try_publish(&self, message: T) -> Result<(), T> {
124 self.channel.publish_with_context(message, None) 124 self.channel.publish_with_context(message, None)
125 } 125 }
126
127 /// The amount of messages that can still be published without having to wait or without having to lag the subscribers
128 ///
129 /// *Note: In the time between checking this and a publish action, other publishers may have had time to publish something.
130 /// So checking doesn't give any guarantees.*
131 pub fn space(&self) -> usize {
132 self.channel.space()
133 }
126} 134}
127 135
128/// An immediate publisher that holds a dynamic reference to the channel 136/// An immediate publisher that holds a dynamic reference to the channel