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.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
AuthorizedOperations
AclOperation list (null if not requested or not supported).
Declaration
public List<AclOperation> AuthorizedOperations { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.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 |
---|---|
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 |
Methods
ToString()
Returns a JSON representation of this object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A JSON representation of this object. |
Overrides
System.Object.ToString()