Container.GetChangeFeedProcessorBuilderWithManualCheckpoint Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetChangeFeedProcessorBuilderWithManualCheckpoint(String, Container+ChangeFeedStreamHandlerWithManualCheckpoint) |
Initializes a ChangeFeedProcessorBuilder for change feed processing with manual checkpoint. |
GetChangeFeedProcessorBuilderWithManualCheckpoint<T>(String, Container.ChangeFeedHandlerWithManualCheckpoint<T>) |
Initializes a ChangeFeedProcessorBuilder for change feed processing with manual checkpoint. |
GetChangeFeedProcessorBuilderWithManualCheckpoint(String, Container+ChangeFeedStreamHandlerWithManualCheckpoint)
- Source:
- Container.cs
Initializes a ChangeFeedProcessorBuilder for change feed processing with manual checkpoint.
public abstract Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder GetChangeFeedProcessorBuilderWithManualCheckpoint (string processorName, Microsoft.Azure.Cosmos.Container.ChangeFeedStreamHandlerWithManualCheckpoint onChangesDelegate);
abstract member GetChangeFeedProcessorBuilderWithManualCheckpoint : string * Microsoft.Azure.Cosmos.Container.ChangeFeedStreamHandlerWithManualCheckpoint -> Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder
Public MustOverride Function GetChangeFeedProcessorBuilderWithManualCheckpoint (processorName As String, onChangesDelegate As Container.ChangeFeedStreamHandlerWithManualCheckpoint) As ChangeFeedProcessorBuilder
Parameters
- processorName
- String
A name that identifies the Processor and the particular work it will do.
- onChangesDelegate
- Container.ChangeFeedStreamHandlerWithManualCheckpoint
Delegate to receive changes.
Returns
An instance of ChangeFeedProcessorBuilder
Applies to
GetChangeFeedProcessorBuilderWithManualCheckpoint<T>(String, Container.ChangeFeedHandlerWithManualCheckpoint<T>)
- Source:
- Container.cs
Initializes a ChangeFeedProcessorBuilder for change feed processing with manual checkpoint.
public abstract Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder GetChangeFeedProcessorBuilderWithManualCheckpoint<T> (string processorName, Microsoft.Azure.Cosmos.Container.ChangeFeedHandlerWithManualCheckpoint<T> onChangesDelegate);
abstract member GetChangeFeedProcessorBuilderWithManualCheckpoint : string * Microsoft.Azure.Cosmos.Container.ChangeFeedHandlerWithManualCheckpoint<'T> -> Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder
Public MustOverride Function GetChangeFeedProcessorBuilderWithManualCheckpoint(Of T) (processorName As String, onChangesDelegate As Container.ChangeFeedHandlerWithManualCheckpoint(Of T)) As ChangeFeedProcessorBuilder
Type Parameters
- T
Parameters
- processorName
- String
A name that identifies the Processor and the particular work it will do.
- onChangesDelegate
- Container.ChangeFeedHandlerWithManualCheckpoint<T>
Delegate to receive changes.
Returns
An instance of ChangeFeedProcessorBuilder
Applies to
Azure SDK for .NET