Skip to main content

GroupDescription

Type Alias GroupDescription 

Source
pub type GroupDescription = ConsumerGroupDescription;
Expand description

Backwards-compatible alias for ConsumerGroupDescription.

Aliased Type§

pub struct GroupDescription {
    pub group_id: String,
    pub state: String,
    pub protocol_type: String,
    pub protocol_data: String,
    pub members: Vec<ConsumerGroupMemberDescription>,
    pub authorized_operations: Option<i32>,
}

Fields§

§group_id: String

Consumer group ID.

§state: String

Group state reported by Kafka.

§protocol_type: String

Protocol type, such as consumer, classic, or share.

§protocol_data: String

Protocol-specific data, usually the assignor or protocol name.

§members: Vec<ConsumerGroupMemberDescription>

Members currently in the group.

§authorized_operations: Option<i32>

Authorized operations bitset when returned by the broker.