Struct re_smart_channel::ReceiveSet
source · pub struct ReceiveSet<T: Send> {
receivers: Mutex<Vec<Receiver<T>>>,
}
Expand description
A set of connected Receiver
s.
Any receiver that gets disconnected is automatically removed from the set.
Fields§
§receivers: Mutex<Vec<Receiver<T>>>
Implementations§
source§impl<T: Send> ReceiveSet<T>
impl<T: Send> ReceiveSet<T>
pub fn new(receivers: Vec<Receiver<T>>) -> Self
pub fn add(&self, r: Receiver<T>)
sourcepub fn remove(&self, source: &SmartChannelSource)
pub fn remove(&self, source: &SmartChannelSource)
Disconnect from any channel with the given source.
pub fn retain(&self, f: impl FnMut(&Receiver<T>) -> bool)
sourcepub fn sources(&self) -> Vec<Arc<SmartChannelSource>>
pub fn sources(&self) -> Vec<Arc<SmartChannelSource>>
List of connected receiver sources.
This gets culled after calling one of the recv
methods.
sourcepub fn is_connected(&self) -> bool
pub fn is_connected(&self) -> bool
Any connected receivers?
This gets updated after calling one of the recv
methods.
sourcepub fn accepts_tcp_connections(&self) -> bool
pub fn accepts_tcp_connections(&self) -> bool
Does this viewer accept inbound TCP connections?
sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
No connected receivers?
This gets updated after calling one of the recv
methods.
sourcepub fn latency_ns(&self) -> u64
pub fn latency_ns(&self) -> u64
Maximum latency among all receivers (or 0, if none).
sourcepub fn recv(&self) -> Result<SmartMessage<T>, RecvError>
pub fn recv(&self) -> Result<SmartMessage<T>, RecvError>
Blocks until a message is ready to be received, or we are empty.
sourcepub fn try_recv(&self) -> Option<(Arc<SmartChannelSource>, SmartMessage<T>)>
pub fn try_recv(&self) -> Option<(Arc<SmartChannelSource>, SmartMessage<T>)>
Returns immediately if there is nothing to receive.
pub fn recv_timeout( &self, timeout: Duration ) -> Option<(Arc<SmartChannelSource>, SmartMessage<T>)>
Trait Implementations§
Auto Trait Implementations§
impl<T> !Freeze for ReceiveSet<T>
impl<T> !RefUnwindSafe for ReceiveSet<T>
impl<T> Send for ReceiveSet<T>
impl<T> Sync for ReceiveSet<T>
impl<T> Unpin for ReceiveSet<T>where
T: Unpin,
impl<T> UnwindSafe for ReceiveSet<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.