@@ -38,6 +38,8 @@ public EventProcessorClient(Azure.Storage.Blobs.BlobContainerClient checkpointSt
3838 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
3939 public override string ToString ( ) { throw null ; }
4040 protected override System . Threading . Tasks . Task UpdateCheckpointAsync ( string partitionId , Azure . Messaging . EventHubs . Processor . CheckpointPosition startingPosition , System . Threading . CancellationToken cancellationToken ) { throw null ; }
41+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
42+ [ System . ObsoleteAttribute ( "The Event Hubs service does not guarantee a numeric offset for all resource configurations. Checkpoints created from a numeric offset may not work in all cases going forward. Please use a string-based offset via the overload accepting 'CheckpointPosition' instead." , false ) ]
4143 protected override System . Threading . Tasks . Task UpdateCheckpointAsync ( string partitionId , long offset , long ? sequenceNumber , System . Threading . CancellationToken cancellationToken ) { throw null ; }
4244 protected override System . Threading . Tasks . Task ValidateProcessingPreconditions ( System . Threading . CancellationToken cancellationToken ) { throw null ; }
4345 }
@@ -71,6 +73,8 @@ public BlobCheckpointStore(Azure.Storage.Blobs.BlobContainerClient blobContainer
7173 public override System . Threading . Tasks . Task < System . Collections . Generic . IEnumerable < Azure . Messaging . EventHubs . Primitives . EventProcessorPartitionOwnership > > ClaimOwnershipAsync ( System . Collections . Generic . IEnumerable < Azure . Messaging . EventHubs . Primitives . EventProcessorPartitionOwnership > desiredOwnership , System . Threading . CancellationToken cancellationToken ) { throw null ; }
7274 public override System . Threading . Tasks . Task < Azure . Messaging . EventHubs . Primitives . EventProcessorCheckpoint > GetCheckpointAsync ( string fullyQualifiedNamespace , string eventHubName , string consumerGroup , string partitionId , System . Threading . CancellationToken cancellationToken ) { throw null ; }
7375 public override System . Threading . Tasks . Task < System . Collections . Generic . IEnumerable < Azure . Messaging . EventHubs . Primitives . EventProcessorPartitionOwnership > > ListOwnershipAsync ( string fullyQualifiedNamespace , string eventHubName , string consumerGroup , System . Threading . CancellationToken cancellationToken ) { throw null ; }
76+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
77+ [ System . ObsoleteAttribute ( "The Event Hubs service does not guarantee a numeric offset for all resource configurations. Checkpoints created from a numeric offset may not work in all cases going forward. Please use a string-based offset via the overload accepting 'CheckpointPosition' instead." , false ) ]
7478 public override System . Threading . Tasks . Task UpdateCheckpointAsync ( string fullyQualifiedNamespace , string eventHubName , string consumerGroup , string partitionId , long offset , long ? sequenceNumber , System . Threading . CancellationToken cancellationToken ) { throw null ; }
7579 public override System . Threading . Tasks . Task UpdateCheckpointAsync ( string fullyQualifiedNamespace , string eventHubName , string consumerGroup , string partitionId , string clientIdentifier , Azure . Messaging . EventHubs . Processor . CheckpointPosition startingPosition , System . Threading . CancellationToken cancellationToken ) { throw null ; }
7680 }
0 commit comments