confluent-kafka-dotnet
Show / Hide Table of Contents

Class GroupInfo

Encapsulates information describing a particular Kafka group.

Inheritance
object
GroupInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Confluent.Kafka
Assembly: Confluent.Kafka.dll
Syntax
public class GroupInfo

Constructors

GroupInfo(BrokerMetadata, string, Error, string, string, string, List<GroupMemberInfo>)

Initializes a new instance of the GroupInfo class.

Declaration
public GroupInfo(BrokerMetadata broker, string group, Error error, string state, string protocolType, string protocol, List<GroupMemberInfo> members)
Parameters
TypeNameDescription
BrokerMetadatabroker

Originating broker info.

stringgroup

The group name.

Errorerror

A rich Error value associated with the information encapsulated by this class.

stringstate

The group state.

stringprotocolType

The group protocol type.

stringprotocol

The group protocol.

List<GroupMemberInfo>members

The group members.

Properties

Broker

Gets the originating-broker info.

Declaration
public BrokerMetadata Broker { get; }
Property Value
TypeDescription
BrokerMetadata

Error

Gets a rich Error value associated with the information encapsulated by this class.

Declaration
public Error Error { get; }
Property Value
TypeDescription
Error

Group

Gets the group name

Declaration
public string Group { get; }
Property Value
TypeDescription
string

Members

Gets the group members

Declaration
public List<GroupMemberInfo> Members { get; }
Property Value
TypeDescription
List<GroupMemberInfo>

Protocol

Gets the group protocol

Declaration
public string Protocol { get; }
Property Value
TypeDescription
string

ProtocolType

Gets the group protocol type

Declaration
public string ProtocolType { get; }
Property Value
TypeDescription
string

State

Gets the group state

Declaration
public string State { get; }
Property Value
TypeDescription
string
In this article