confluent-kafka-dotnet
Show / Hide Table of Contents

Class ListConsumerGroupsOptions

Options for the "AdminClient.ListConsumerGroupsAsync" method.

Inheritance
System.Object
ListConsumerGroupsOptions
Inherited Members
System.Object.ToString()
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 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
System.Collections.Generic.IEnumerable<ConsumerGroupState>

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
System.Nullable<System.TimeSpan>
In This Article