nautilus_common::throttler::inner

Struct InnerThrottler

Source
pub struct InnerThrottler<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>>,
    /* 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.

Implementations§

Source§

impl<T, F> InnerThrottler<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>, ) -> Self

Creates a new InnerThrottler instance.

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:

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> InnerThrottler<T, F>
where T: 'static, F: Fn(T) + 'static,

Source

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

Source

pub fn limit_msg(&mut self, msg: T, throttler: Throttler<T, F>)

Trait Implementations§

Source§

impl<T, F> Debug for InnerThrottler<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 InnerThrottler<T, F>
where F: Freeze,

§

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

§

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

§

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

§

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

§

impl<T, F> !UnwindSafe for InnerThrottler<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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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<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