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
object
ConsumerGroupDescription
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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

GroupType

Consumer group type.

Declaration
public ConsumerGroupType GroupType { get; set; }
Property Value
Type Description
ConsumerGroupType

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.

Overrides
object.ToString()
In this article