Show / Hide Table of Contents

Class PartitionReservation

Represents the state of a single partition reservation.

Inheritance
object
PartitionReservation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StreamingService.Models
Assembly: OCI.DotNetSDK.Streaming.dll
Syntax
public class PartitionReservation

Properties

CommittedOffset

Declaration
[JsonProperty(PropertyName = "committedOffset")]
public long? CommittedOffset { get; set; }
Property Value
Type Description
long?

The latest offset which has been committed for this partition.

Partition

Declaration
[JsonProperty(PropertyName = "partition")]
public string Partition { get; set; }
Property Value
Type Description
string

The partition for which the reservation applies.

ReservedInstance

Declaration
[JsonProperty(PropertyName = "reservedInstance")]
public string ReservedInstance { get; set; }
Property Value
Type Description
string

The consumer instance which currently has the partition reserved.

TimeReservedUntil

Declaration
[JsonProperty(PropertyName = "timeReservedUntil")]
public DateTime? TimeReservedUntil { get; set; }
Property Value
Type Description
DateTime?

A timestamp when the current reservation expires.

In this article
Back to top