Class ListOffsetsReport
Represents the result of a ListOffsets request (including error status).
Inherited Members
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class ListOffsetsReport
Properties
Error
Operation error status.
Declaration
public Error Error { get; set; }
Property Value
Type | Description |
---|---|
Error |
ResultInfos
Result information for all the partitions queried with ListOffsets. At least one of these results will be in error.
Declaration
public List<ListOffsetsResultInfo> ResultInfos { get; set; }
Property Value
Type | Description |
---|---|
List<ListOffsetsResultInfo> |
Methods
ToString()
Returns a JSON representation of the object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A JSON representation of the object. |