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
Copy file name to clipboardExpand all lines: README.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ See [here](https://javadoc.io/doc/dev.openfeature/sdk/latest/) for the Javadocs.
126
126
| ✅ |[Targeting](#targeting)| Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
127
127
| ✅ |[Hooks](#hooks)| Add functionality to various stages of the flag evaluation life-cycle. |
128
128
| ✅ |[Logging](#logging)| Integrate with popular logging packages. |
129
-
| ✅ |[Named clients](#named-clients)| Utilize multiple providers in a single application.|
129
+
| ✅ |[Domains](#domains)| Logically bind clients with providers. |
130
130
| ✅ |[Eventing](#eventing)| React to state changes in the provider or flag management system. |
131
131
| ✅ |[Shutdown](#shutdown)| Gracefully clean up a provider during application shutdown. |
132
132
| ✅ |[Transaction Context Propagation](#transaction-context-propagation)| Set a specific [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context) for a transaction (e.g. an HTTP request or a thread). |
@@ -160,7 +160,7 @@ To register a provider in a non-blocking manner, you can use the `setProvider` m
160
160
```
161
161
162
162
In some situations, it may be beneficial to register multiple providers in the same application.
163
-
This is possible using [named clients](#named-clients), which is covered in more details below.
163
+
This is possible using [domains](#domains), which is covered in more detail below.
164
164
165
165
### Targeting
166
166
@@ -219,27 +219,27 @@ Once you've added a hook as a dependency, it can be registered at the global, cl
219
219
220
220
The Java SDK uses SLF4J. See the [SLF4J manual](https://slf4j.org/manual.html) for complete documentation.
221
221
222
-
### Named clients
222
+
### Domains
223
223
224
-
Clients can be given a name.
225
-
A name is a logical identifier which can be used to associate clients with a particular provider.
226
-
If a name has no associated provider, the global provider is used.
224
+
Clients can be assigned to a domain.
225
+
A domain is a logical identifier which can be used to associate clients with a particular provider.
226
+
If a domain has no associated provider, the global provider is used.
0 commit comments