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: providers/flagd/README.md
+21-2
Original file line number
Diff line number
Diff line change
@@ -64,9 +64,28 @@ Provider will attempt to detect file changes using polling.
64
64
Polling happens at 5 second intervals and this is currently unconfigurable.
65
65
This mode is useful for local development, tests and offline applications.
66
66
67
+
#### Custom Connector
68
+
69
+
You can include a custom connector as a configuration option to customize how the in-process resolver fetches flags.
70
+
The custom connector must implement the [Connector interface](https://github.com/open-feature/java-sdk-contrib/blob/main/providers/flagd/src/main/java/dev/openfeature/contrib/providers/flagd/resolver/process/storage/connector/Connector.java).
Copy file name to clipboardexpand all lines: providers/flagd/src/main/java/dev/openfeature/contrib/providers/flagd/resolver/process/InProcessResolver.java
+3
Original file line number
Diff line number
Diff line change
@@ -152,6 +152,9 @@ public ProviderEvaluation<Value> objectEvaluation(String key, Value defaultValue
Copy file name to clipboardexpand all lines: providers/flagd/src/test/java/dev/openfeature/contrib/providers/flagd/resolver/process/InProcessResolverTest.java
Copy file name to clipboardexpand all lines: providers/flagd/src/test/java/dev/openfeature/contrib/providers/flagd/resolver/process/storage/MockConnector.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ public class MockConnector implements Connector {
0 commit comments