We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3bec4 commit 0164f95Copy full SHA for 0164f95
src/main/java/org/dataloader/strategy/GreedyLevelByLevelChainedDispatchStrategy.java
@@ -3,6 +3,7 @@
3
import org.dataloader.DataLoader;
4
import org.dataloader.DataLoaderRegistry;
5
import org.dataloader.DispatchStrategy;
6
+import org.dataloader.annotations.PublicApi;
7
import org.dataloader.annotations.VisibleForTesting;
8
import org.dataloader.impl.Assertions;
9
import org.jspecify.annotations.NullMarked;
@@ -28,6 +29,7 @@
28
29
* In practice this will greedily fill up DataLoader keys while walking the chain to provide a nice balance of
30
* batching/dedupe/caching while not needing to worry about manually dispatching the tree.
31
*/
32
+@PublicApi
33
@NullMarked
34
public class GreedyLevelByLevelChainedDispatchStrategy implements DispatchStrategy {
35
0 commit comments