You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Still working on a work around, Stack Overflow How can I get the changefeeds Monitored Collection name into my ChangesHander - Containers.ChangesHander (Azure Cosmos v3), Where in v2 IIRC, the ChangeHandler signature included the context of the Observer. From which I would be able to exact the Monitored Collection name
public Task ProcessChangesAsync(IChangeFeedObserverContext context, IReadOnlyList<Document> deltas, CancellationToken cancellationToken)
where in v3
private async Task HandleChangesAsync(IReadOnlyCollection<Document> changes, CancellationToken cancellationToken)
In my specific scenario, from the context I could take specific action based on the determined monitored collection
Beta Was this translation helpful? Give feedback.
All reactions