Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Checkpoint

Package version

A checkpoint is meant to represent the last successfully processed event by the user from a particular partition of a consumer group in an Event Hub instance.

When the updateCheckpoint() method on the PartitionProcessor class is called by the user, a Checkpoint is created internally. It is then stored in the storage solution implemented by the CheckpointManager chosen by the user when creating an EventProcessor.

Users are never expected to interact with Checkpoint directly. This interface exists to support the internal workings of EventProcessor and CheckpointManager.

Hierarchy

  • Checkpoint

Index

Properties

consumerGroup

consumerGroup: string

The consumer group name

eventHubName

eventHubName: string

The event hub name

fullyQualifiedNamespace

fullyQualifiedNamespace: string

The fully qualified Event Hubs namespace. This is likely to be similar to .servicebus.windows.net

offset

offset: number

The offset of the event.

partitionId

partitionId: string

The identifier of the Event Hub partition

sequenceNumber

sequenceNumber: number

The sequence number of the event

Generated using TypeDoc