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/src/main/java/dev/openfeature/contrib/providers/flagd/resolver/process/storage/connector/file/FileConnector.java
+45-8
Original file line number
Diff line number
Diff line change
@@ -9,36 +9,73 @@
9
9
importjava.io.IOException;
10
10
importjava.nio.charset.StandardCharsets;
11
11
importjava.nio.file.Files;
12
+
importjava.nio.file.Path;
12
13
importjava.nio.file.Paths;
13
14
importjava.util.concurrent.BlockingQueue;
14
15
importjava.util.concurrent.LinkedBlockingQueue;
15
16
16
17
/**
17
-
* File connector reads flag configurations and expose the context through {@code Connector} contract.
18
+
* File connector reads flag configurations from a given file, polls for changes and expose the content through
19
+
* {@code Connector} contract.
18
20
* The implementation is kept minimal and suites testing, local development needs.
Copy file name to clipboardExpand all lines: providers/flagd/src/test/java/dev/openfeature/contrib/providers/flagd/resolver/process/storage/connector/file/FileConnectorTest.java
0 commit comments