confluent-kafka-dotnet
Show / Hide Table of Contents

Class ListOffsetsOptions

Options for the "AdminClient.ListOffsetsAsync" method.

Inheritance
object
ListOffsetsOptions
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 ListOffsetsOptions

Properties

IsolationLevel

Isolation level to fetch the offset with. Applies to the whole request.

Default: ReadUncommitted

Declaration
public IsolationLevel IsolationLevel { get; set; }
Property Value
Type Description
IsolationLevel

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