Struct IntervalSubscriber

Source
pub struct IntervalSubscriber<R>(/* private fields */);
Expand description

A subscriber which polls resolver at a regular interval

Create the instance with SubscribeExt::interval_subscriber

Trait Implementations§

Source§

impl<R: Debug> Debug for IntervalSubscriber<R>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T: HostResolve> HostResolve for IntervalSubscriber<T>

Source§

type HostFuture = <T as HostResolve>::HostFuture

A future returned from resolve()
Source§

fn resolve_host(&self, name: &Name) -> Self::HostFuture

Resolve a name to an address once
Source§

fn frozen_host_subscriber(self) -> FrozenSubscriber<Self>
where Self: Sized,

Create a subscriber that resolves once using this resolver and never updates a stream Read more
Source§

fn null_service_resolver(self) -> NullResolver<Self>
where Self: Sized,

Create a thing that implements Resolve+HostResolve but returns NameNotFound on resolve Read more
Source§

impl<T: HostResolve> HostSubscribe for IntervalSubscriber<T>

Source§

type HostError = <<T as HostResolve>::HostFuture as Future>::Error

An error type returned by a stream Read more
Source§

type HostStream = IntervalHostResolver<T>

A stream returned from subscribe()
Source§

fn subscribe_host(&self, name: &Name) -> Self::HostStream

Resolve a name and subscribe to the updates Read more
Source§

impl<T: Resolve> Resolve for IntervalSubscriber<T>

Source§

type Future = <T as Resolve>::Future

A future returned from resolve()
Source§

fn resolve(&self, name: &Name) -> Self::Future

Resolve a name to an address once
Source§

fn frozen_subscriber(self) -> FrozenSubscriber<Self>
where Self: Sized + Resolve,

Create a subscriber that resolves once using this resolver and never updates a stream Read more
Source§

fn frozen_service_subscriber(self) -> FrozenSubscriber<Self>
where Self: Sized,

Create a subscriber that resolves once using this resolver and never updates a stream Read more
Source§

fn null_host_resolver(self) -> NullHostResolver<Self>
where Self: Sized,

Create a thing that implements Resolve+HostResolve but returns NameNotFound on resolve_host Read more
Source§

impl<T: Resolve> Subscribe for IntervalSubscriber<T>

Source§

type Error = <<T as Resolve>::Future as Future>::Error

An error type returned by a stream Read more
Source§

type Stream = IntervalResolver<T>

A stream returned from subscribe()
Source§

fn subscribe(&self, name: &Name) -> Self::Stream

Resolve a name and subscribe to the updates Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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> SubscribeExt for T
where T: Resolve + HostResolve,

Source§

fn interval_subscriber( self, interval: Duration, handle: &Handle, ) -> IntervalSubscriber<T>

Return a subscriber that uses resolve or resolve_host at a regular interval
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.