Struct Throttler

Source
pub struct Throttler<T, F> {
    pub recv_count: usize,
    pub sent_count: usize,
    pub is_limiting: bool,
    pub limit: usize,
    pub buffer: VecDeque<T>,
    pub timestamps: VecDeque<UnixNanos>,
    pub clock: Rc<RefCell<dyn Clock>>,
    pub actor_id: Ustr,
    /* private fields */
}
Expand description

Throttler rate limits messages by dropping or buffering them.

Throttler takes messages of type T and callback of type F for dropping or processing messages.

Fields§

§recv_count: usize

The number of messages received.

§sent_count: usize

The number of messages sent.

§is_limiting: bool

Whether the throttler is currently limiting the message rate.

§limit: usize

The maximum number of messages that can be sent within the interval.

§buffer: VecDeque<T>

The buffer of messages to be sent.

§timestamps: VecDeque<UnixNanos>

The timestamps of the sent messages.

§clock: Rc<RefCell<dyn Clock>>

The clock used to keep track of time.

§actor_id: Ustr

The actor ID of the throttler.

Implementations§

Source§

impl<T, F> Throttler<T, F>

Source

pub fn new( limit: usize, interval: u64, clock: Rc<RefCell<dyn Clock>>, timer_name: String, output_send: F, output_drop: Option<F>, actor_id: Ustr, ) -> Self

Source

pub fn set_timer(&mut self, callback: Option<TimeEventCallback>)

Set timer with a callback to be triggered on next interval.

Typically used to register callbacks:

  • to process buffered messages
  • to stop buffering
Source

pub fn delta_next(&mut self) -> u64

Time delta when the next message can be sent.

Source

pub fn reset(&mut self)

Reset the throttler which clears internal state.

Source

pub fn used(&self) -> f64

Fractional value of rate limit consumed in current interval.

Source

pub fn qsize(&self) -> usize

Number of messages queued in buffer.

Source§

impl<T, F> Throttler<T, F>
where T: 'static, F: Fn(T) + 'static,

Source

pub fn to_actor(self) -> Rc<UnsafeCell<Self>>

Source

pub fn send_msg(&mut self, msg: T)

Source

pub fn limit_msg(&mut self, msg: T)

Source

pub fn send(&mut self, msg: T)
where T: 'static, F: Fn(T) + 'static,

Trait Implementations§

Source§

impl<T, F> Actor for Throttler<T, F>
where T: 'static, F: Fn(T) + 'static,

Source§

fn id(&self) -> Ustr

Source§

fn handle(&mut self, _msg: &dyn Any)

Source§

fn as_any(&self) -> &dyn Any

Source§

impl<T, F> Debug for Throttler<T, F>
where T: Debug,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, F> Freeze for Throttler<T, F>
where F: Freeze,

§

impl<T, F> !RefUnwindSafe for Throttler<T, F>

§

impl<T, F> !Send for Throttler<T, F>

§

impl<T, F> !Sync for Throttler<T, F>

§

impl<T, F> Unpin for Throttler<T, F>
where F: Unpin, T: Unpin,

§

impl<T, F> !UnwindSafe for Throttler<T, F>

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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, 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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more