Class ConsumerGroupDescription
Represents a single consumer group's description in the result of a describe consumer group operation.
Inherited Members
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class ConsumerGroupDescription
Properties
AuthorizedOperations
AclOperation list (null if not requested or not supported).
Declaration
public List<AclOperation> AuthorizedOperations { get; set; }
Property Value
Type | Description |
---|---|
List<AclOperation> |
Coordinator
Broker that acts as consumer group coordinator (null if not known).
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 |
---|---|
string |
IsSimpleConsumerGroup
Whether the consumer group is simple or not.
Declaration
public bool IsSimpleConsumerGroup { get; set; }
Property Value
Type | Description |
---|---|
bool |
Members
Members list.
Declaration
public List<MemberDescription> Members { get; set; }
Property Value
Type | Description |
---|---|
List<MemberDescription> |
PartitionAssignor
Partition assignor identifier.
Declaration
public string PartitionAssignor { get; set; }
Property Value
Type | Description |
---|---|
string |
State
Consumer group state.
Declaration
public ConsumerGroupState State { get; set; }
Property Value
Type | Description |
---|---|
ConsumerGroupState |
Methods
ToString()
Returns a JSON representation of this object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A JSON representation of this object. |