[][src]Struct actix_aggregator::Aggregator

pub struct Aggregator<T: Eq + Hash> { /* fields omitted */ }

Implementations

impl<T> Aggregator<T> where
    T: Eq + Hash + Unpin + 'static, 
[src]

pub fn new(
    debounce: Duration,
    max_delay: Duration,
    callback_fn: Box<dyn Fn(HashSet<T>) + Send>
) -> Aggregator<T>
[src]

pub fn extend(&mut self, payload: Vec<T>, ctx: &mut Self::Context)[src]

pub fn flush_later(&mut self, ctx: &mut Self::Context)[src]

pub fn flush(&mut self)[src]

Trait Implementations

impl<T> Actor for Aggregator<T> where
    T: Eq + Hash + Unpin + 'static, 
[src]

type Context = Context<Self>

Actor execution context type

impl<T> Handler<AggregatorCmd<T>> for Aggregator<T> where
    T: Eq + Hash + Unpin + 'static, 
[src]

type Result = ()

The type of value that this handler will return. Read more

impl<T> Supervised for Aggregator<T> where
    T: Eq + Hash + Unpin + 'static, 
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Aggregator<T>

impl<T> Send for Aggregator<T> where
    T: Send

impl<T> !Sync for Aggregator<T>

impl<T> Unpin for Aggregator<T> where
    T: Unpin

impl<T> !UnwindSafe for Aggregator<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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