-
Notifications
You must be signed in to change notification settings - Fork 2
Add policy factory overloads for pooled instance registration #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
tillig
merged 11 commits into
autofac:develop
from
zms9110750:feature/pool-registration
Jun 16, 2026
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1ba32c9
Add ObjectPool<T> factory overload for pooled instance registration
zms9110750 596999e
Add metadata-based pool/strategy configuration with type-safe builder
zms9110750 0bbc5f3
Remove junk files from commit
zms9110750 5832245
Convert ObjectPool<T> factory overload to IPooledRegistrationPolicy<T…
zms9110750 fecf840
Revert "Remove junk files from commit"
zms9110750 874c5b2
Revert "Add metadata-based pool/strategy configuration with type-safe…
zms9110750 8940f9e
Merge branch 'feature/pool-strategy' into feature/pool-registration
zms9110750 205e983
Address review feedback: share policy instance, revert OnReturnToPool…
zms9110750 d510a04
Fix test formatting and add assertion for S2699
zms9110750 ddf5bce
Add .reasonix/ to gitignore
zms9110750 4ffb101
Fix PooledInstanceContext property formatting
zms9110750 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -166,3 +166,6 @@ $RECYCLE.BIN/ | |
|
|
||
| # JetBrains Rider | ||
| .idea | ||
|
|
||
| # Reasonix AI assistant | ||
| .reasonix/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| // Copyright (c) Autofac Project. All rights reserved. | ||
| // Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
|
||
| using Microsoft.Extensions.ObjectPool; | ||
|
|
||
| namespace Autofac.Pooling; | ||
|
|
||
| /// <summary> | ||
| /// Holds a resolved pool and its associated policy instance, | ||
| /// so the policy created during pool construction is shared with the get-side activator. | ||
| /// </summary> | ||
| /// <typeparam name="TLimit">The limit type of the objects in the pool.</typeparam> | ||
| internal sealed class PooledInstanceContext<TLimit> | ||
| where TLimit : class | ||
| { | ||
| /// <summary> | ||
| /// Initializes a new instance of the <see cref="PooledInstanceContext{TLimit}"/> class. | ||
| /// </summary> | ||
| /// <param name="pool">The object pool.</param> | ||
| /// <param name="policy">The resolved registration policy.</param> | ||
| public PooledInstanceContext(ObjectPool<TLimit> pool, IPooledRegistrationPolicy<TLimit> policy) | ||
| { | ||
| Pool = pool; | ||
| Policy = policy; | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Gets the object pool. | ||
| /// </summary> | ||
| public ObjectPool<TLimit> Pool | ||
| { | ||
| get; | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Gets the resolved registration policy, shared between pool creation and retrieval. | ||
| /// </summary> | ||
| public IPooledRegistrationPolicy<TLimit> Policy | ||
| { | ||
| get; | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.