Skip to main content

Mountain/Vine/Client/
SubscriberCount.rs

1
2//! Number of currently-active broadcast subscribers. Diagnostic; useful
3//! for validating that subscribers haven't leaked.
4
5use crate::Vine::Client::Shared;
6
7pub fn Fn() -> usize { Shared::NOTIFICATION_BROADCAST.receiver_count() }