Skip to content

Commit

Permalink
Update 13-change-feed.md
Browse files Browse the repository at this point in the history
Removed incorrect additional token for the ChangesHandler object
  • Loading branch information
MScalopez authored Oct 15, 2023
1 parent cf10e2e commit d79714b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions instructions/13-change-feed.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,11 @@ The **Microsoft.Azure.Cosmos.Container** class ships with a series of methods to
1. A parameter named **context** of type **ChangeFeedProcessorContext**.
1. A parameter named **changes** of type **IReadOnlyCollection\<Product\>**.
1. A parameter named **cancellationToken** of type **CancellationToken**.
```
ChangesHandler<Product> handleChanges = async (
ChangeFeedProcessorContext context,
IReadOnlyCollection<Product> changes,
CancellationToken cancellationToken
) => {
};
Expand Down Expand Up @@ -228,7 +225,6 @@ The **Microsoft.Azure.Cosmos.Container** class ships with a series of methods to
ChangesHandler<Product> handleChanges = async (
ChangeFeedProcessorContext context,
IReadOnlyCollection<Product> changes,
CancellationToken cancellationToken
) => {
Console.WriteLine($"START\tHandling batch of changes...");
Expand Down

0 comments on commit d79714b

Please sign in to comment.