Claim ownership of a list of partitions. This will return the list of partitions that were owned successfully.
The list of partition ownership this instance is claiming to own.
A list partitions this instance successfully claimed ownership.
Get the list of all existing partition ownership from the underlying data store. Could return empty results if there are is no existing ownership information.
The fully qualified Event Hubs namespace. This is likely to be similar to
The event hub name.
The consumer group name.
Partition ownership details of all the partitions that have/had an owner..
Updates the checkpoint in the data store for a partition.
The checkpoint.
The new eTag on successful update
Generated using TypeDoc
The
EventProcessor
relies on aPartitionManager
to store checkpoints and handle partition ownerships.InMemoryPartitionManager
is simple partition manager that stores checkpoints and partition ownerships in memory of your program.You can use the
InMemoryPartitionManager
to get started with using theEventProcessor
. But in production, you should choose an implementation of thePartitionManager
interface that will store the checkpoints and partition ownerships to a durable store instead.