confluent-kafka-dotnet
Show / Hide Table of Contents

Class ListConsumerGroupsOptions

Options for the "AdminClient.ListConsumerGroupsAsync" method.

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

Properties

MatchStates

An enumerable with the states to query, null to query for all the states.

Default: null

Declaration
public IEnumerable<ConsumerGroupState> MatchStates { get; set; }
Property Value
Type Description
IEnumerable<ConsumerGroupState>

MatchTypes

An enumerable with the types to query, null to query for all the types.

Default: null

Declaration
public IEnumerable<ConsumerGroupType> MatchTypes { get; set; }
Property Value
Type Description
IEnumerable<ConsumerGroupType>

RequestTimeout

The overall request timeout, including broker lookup, request transmission, operation time on broker, and response. If set to null, the default request timeout for the AdminClient will be used.

Default: null

Declaration
public TimeSpan? RequestTimeout { get; set; }
Property Value
Type Description
TimeSpan?
In this article