[][src]Struct dendrite::axon_server::control::EventProcessorInfo

pub struct EventProcessorInfo {
    pub processor_name: String,
    pub mode: String,
    pub active_threads: i32,
    pub running: bool,
    pub error: bool,
    pub segment_status: Vec<SegmentStatus>,
    pub available_threads: i32,
    pub token_store_identifier: String,
}

Message containing information about the status of a Tracking Event Processor

Fields

processor_name: String

The logical name of this processor.

mode: String

The mode in which this processor is reading Events, for example: 'Tracking' or 'Subscribing'

active_threads: i32

The number of threads currently actively processing Events

running: bool

Flag indicating whether the processor is running

error: bool

Flag indicating whether the processor, when stopped, did so because of an irrecoverable Error

segment_status: Vec<SegmentStatus>

Status details of each of the Segments for which Events are being processed. This is only provided by Tracking Event Processors.

available_threads: i32

The number of threads the processor has available to assign to Segments. Will report 0 if all threads are assigned a Segment.

token_store_identifier: String

The Token Store Identifier if available. This is only provided by Tracking Event Processors.

Trait Implementations

impl Clone for EventProcessorInfo[src]

impl Debug for EventProcessorInfo[src]

impl Default for EventProcessorInfo[src]

impl Message for EventProcessorInfo[src]

impl PartialEq<EventProcessorInfo> for EventProcessorInfo[src]

impl StructuralPartialEq for EventProcessorInfo[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>, 

impl<T> VecU8Message for T where
    T: Message
[src]

impl<T> WithSubscriber for T[src]