confluent-kafka-dotnet
Show / Hide Table of Contents

Class ConsumerGroupDescription

Represents a single consumer group's description in the result of a describe consumer group operation.

Inheritance
System.Object
ConsumerGroupDescription
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Confluent.Kafka.Admin
Assembly: cs.temp.dll.dll
Syntax
public class ConsumerGroupDescription

Properties

Coordinator

Consumer group coordinator (broker).

Declaration
public Node Coordinator { get; set; }
Property Value
Type Description
Node

Error

Error, if any, of result

Declaration
public Error Error { get; set; }
Property Value
Type Description
Error

GroupId

The groupID.

Declaration
public string GroupId { get; set; }
Property Value
Type Description
System.String

IsSimpleConsumerGroup

Whether the consumer group is simple or not.

Declaration
public bool IsSimpleConsumerGroup { get; set; }
Property Value
Type Description
System.Boolean

Members

Members list.

Declaration
public List<MemberDescription> Members { get; set; }
Property Value
Type Description
System.Collections.Generic.List<MemberDescription>

PartitionAssignor

Partition assignor identifier.

Declaration
public string PartitionAssignor { get; set; }
Property Value
Type Description
System.String

State

Consumer group state.

Declaration
public ConsumerGroupState State { get; set; }
Property Value
Type Description
ConsumerGroupState
In This Article