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
InMemoryLeaseContainer: Adds public API to use InMemoryLeaseContainer with ChangeFeedProcessorBuilder (#5182)
Enabling using InMemoryLeaseContainer as public contract.
**LIMITATIONS: Estimator API is not supported with
InMemoryLeaseContainer.**
```C#
public class ChangeFeedProcessorBuilder
{
public virtual ChangeFeedProcessorBuilder WithInMemoryLeaseContainer();
}
```
Usage
```C#
ChangeFeedProcessor processor = this.Container
.GetChangeFeedProcessorBuilder(...)
.WithInstanceName("...")
.WithInMemoryLeaseContainer()
.Build();
```
## Type of change
Please delete options that are not relevant.
- [] Bug fix (non-breaking change which fixes an issue)
- [x] New feature (non-breaking change which adds functionality)
- [] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [] This change requires a documentation update
## Closing issues
To automatically close an issue: closes#5177
---------
Co-authored-by: Debdatta Kunda <[email protected]>
0 commit comments