[][src]Struct kf_protocol::message::group::KfJoinGroupRequest

pub struct KfJoinGroupRequest {
    pub group_id: String,
    pub session_timeout_ms: i32,
    pub rebalance_timeout_ms: i32,
    pub member_id: String,
    pub protocol_type: String,
    pub protocols: Vec<JoinGroupRequestProtocol>,
}

Fields

group_id: String

The group identifier.

session_timeout_ms: i32

The coordinator considers the consumer dead if it receives no heartbeat after this timeout in milliseconds.

rebalance_timeout_ms: i32

The maximum time in milliseconds that the coordinator will wait for each member to rejoin when rebalancing the group.

member_id: String

The member id assigned by the group coordinator.

protocol_type: String

The unique name the for class of protocols implemented by the group we want to join.

protocols: Vec<JoinGroupRequestProtocol>

The list of protocols that the member supports.

Trait Implementations

impl Debug for KfJoinGroupRequest[src]

impl Decoder for KfJoinGroupRequest[src]

impl Default for KfJoinGroupRequest[src]

impl<'de> Deserialize<'de> for KfJoinGroupRequest[src]

impl Encoder for KfJoinGroupRequest[src]

impl Request for KfJoinGroupRequest[src]

impl Serialize for KfJoinGroupRequest[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.