pub struct WatchersSpawner<S, O> { /* private fields */ }
Expand description

Spawner for the Component’s watchers.

Implementations§

source§

impl<S: 'static, O: 'static> WatchersSpawner<S, O>

source

pub fn spawn<R, V, F, H>(&mut self, rx: R, handle: F)where R: Stream<Item = V> + Unpin + 'static, F: Fn(Rc<O>, Rc<S>, V) -> H + 'static, H: Future + 'static, <H as Future>::Output: IntoResult,

Spawns watchers for the provided [Stream].

If watcher returns an error then this error will be printed to the error log.

You can stop all listeners tasks spawned by this function by Dropping the Component.

source

pub fn spawn_sync<R, V, F, Obj, St, H>(&mut self, rx: R, handle: F)where R: Stream<Item = V> + Unpin + 'static, F: Fn(&Obj, &St, V) -> H + 'static, Rc<O>: Borrow<Obj>, Rc<S>: Borrow<St>, H: IntoResult + 'static,

Spawns synchronous watchers for the provided [Stream].

If watcher returns an error then this error will be printed to the error log.

You can stop all listeners tasks spawned by this function by Dropping the Component.

Trait Implementations§

source§

impl<S: Debug, O: Debug> Debug for WatchersSpawner<S, O>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<S, O> !RefUnwindSafe for WatchersSpawner<S, O>

§

impl<S, O> !Send for WatchersSpawner<S, O>

§

impl<S, O> !Sync for WatchersSpawner<S, O>

§

impl<S, O> Unpin for WatchersSpawner<S, O>

§

impl<S, O> !UnwindSafe for WatchersSpawner<S, O>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<E> WrapTraced<E> for E

source§

fn wrap_traced(self, f: Frame) -> Traced<E>

Wraps this error into a Traced wrapper, storing the given Frame of a Trace inside.