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
Uses "domain" terminology instead of "client name / named client".
Fixes: #249
I believe with this, we are able to release a 2.0
---------
Signed-off-by: Todd Baert <[email protected]>
Co-authored-by: André Silva <[email protected]>
| ✅ |[Providers](#providers)| Integrate with a commercial, open source, or in-house feature management tool. |
75
-
| ✅ |[Targeting](#targeting)| Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
76
-
| ✅ |[Hooks](#hooks)| Add functionality to various stages of the flag evaluation life-cycle. |
77
-
| ✅ |[Logging](#logging)| Integrate with popular logging packages. |
78
-
| ✅ |[Named clients](#named-clients)| Utilize multiple providers in a single application.|
79
-
| ✅ |[Eventing](#eventing)| React to state changes in the provider or flag management system. |
80
-
| ✅ |[Shutdown](#shutdown)| Gracefully clean up a provider during application shutdown. |
81
-
| ✅ |[Extending](#extending)| Extend OpenFeature with custom providers and hooks. |
| ✅ |[Providers](#providers)| Integrate with a commercial, open source, or in-house feature management tool. |
75
+
| ✅ |[Targeting](#targeting)| Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
76
+
| ✅ |[Hooks](#hooks)| Add functionality to various stages of the flag evaluation life-cycle. |
77
+
| ✅ |[Logging](#logging)| Integrate with popular logging packages. |
78
+
| ✅ |[Domains](#domains)| Logically bind clients with providers. |
79
+
| ✅ |[Eventing](#eventing)| React to state changes in the provider or flag management system. |
80
+
| ✅ |[Shutdown](#shutdown)| Gracefully clean up a provider during application shutdown. |
81
+
| ✅ |[Extending](#extending)| Extend OpenFeature with custom providers and hooks. |
In some situations, it may be beneficial to register multiple providers in the same application.
99
-
This is possible using [named clients](#named-clients), which is covered in more detail below.
99
+
This is possible using [domains](#domains), which is covered in more detail below.
100
100
101
101
### Targeting
102
102
@@ -151,27 +151,29 @@ var value = await client.GetBooleanValueAsync("boolFlag", false, context, new Fl
151
151
152
152
The .NET SDK uses Microsoft.Extensions.Logging. See the [manual](https://learn.microsoft.com/en-us/dotnet/core/extensions/logging?tabs=command-line) for complete documentation.
153
153
154
-
### Named clients
154
+
### Domains
155
155
156
-
Clients can be given a name.
157
-
A name is a logical identifier that can be used to associate clients with a particular provider.
158
-
If a name has no associated provider, the global provider is used.
156
+
Clients can be assigned to a domain.
157
+
A domain is a logical identifier which can be used to associate clients with a particular provider.
158
+
If a domain has no associated provider, the default provider is used.
0 commit comments