Container.GetChangeFeedProcessorBuilder Method

Definition

Overloads

GetChangeFeedProcessorBuilder(String, Container+ChangeFeedStreamHandler)

Initializes a ChangeFeedProcessorBuilder for change feed processing.

GetChangeFeedProcessorBuilder<T>(String, Container.ChangeFeedHandler<T>)

Initializes a ChangeFeedProcessorBuilder for change feed processing.

GetChangeFeedProcessorBuilder<T>(String, Container.ChangesHandler<T>)

Initializes a ChangeFeedProcessorBuilder for change feed processing.

GetChangeFeedProcessorBuilder(String, Container+ChangeFeedStreamHandler)

Initializes a ChangeFeedProcessorBuilder for change feed processing.

public abstract Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder GetChangeFeedProcessorBuilder (string processorName, Microsoft.Azure.Cosmos.Container.ChangeFeedStreamHandler onChangesDelegate);
abstract member GetChangeFeedProcessorBuilder : string * Microsoft.Azure.Cosmos.Container.ChangeFeedStreamHandler -> Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder
Public MustOverride Function GetChangeFeedProcessorBuilder (processorName As String, onChangesDelegate As Container.ChangeFeedStreamHandler) As ChangeFeedProcessorBuilder

Parameters

processorName
String

A name that identifies the Processor and the particular work it will do.

onChangesDelegate
Container.ChangeFeedStreamHandler

Delegate to receive changes.

Returns

An instance of ChangeFeedProcessorBuilder

Applies to

GetChangeFeedProcessorBuilder<T>(String, Container.ChangeFeedHandler<T>)

Initializes a ChangeFeedProcessorBuilder for change feed processing.

public abstract Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder GetChangeFeedProcessorBuilder<T> (string processorName, Microsoft.Azure.Cosmos.Container.ChangeFeedHandler<T> onChangesDelegate);
abstract member GetChangeFeedProcessorBuilder : string * Microsoft.Azure.Cosmos.Container.ChangeFeedHandler<'T> -> Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder
Public MustOverride Function GetChangeFeedProcessorBuilder(Of T) (processorName As String, onChangesDelegate As Container.ChangeFeedHandler(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.ChangeFeedHandler<T>

Delegate to receive changes.

Returns

An instance of ChangeFeedProcessorBuilder

Applies to

GetChangeFeedProcessorBuilder<T>(String, Container.ChangesHandler<T>)

Initializes a ChangeFeedProcessorBuilder for change feed processing.

public abstract Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder GetChangeFeedProcessorBuilder<T> (string processorName, Microsoft.Azure.Cosmos.Container.ChangesHandler<T> onChangesDelegate);
abstract member GetChangeFeedProcessorBuilder : string * Microsoft.Azure.Cosmos.Container.ChangesHandler<'T> -> Microsoft.Azure.Cosmos.ChangeFeedProcessorBuilder
Public MustOverride Function GetChangeFeedProcessorBuilder(Of T) (processorName As String, onChangesDelegate As Container.ChangesHandler(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.ChangesHandler<T>

Delegate to receive changes.

Returns

An instance of ChangeFeedProcessorBuilder

Applies to