Skip to content

Commit

Permalink
[flink] #33145 cache StateNamespace#stringKey in FlinkStateInternals
Browse files Browse the repository at this point in the history
  • Loading branch information
je-ik committed Nov 18, 2024
1 parent 0682edc commit 27aa65e
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 67 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public void appendTo(Appendable sb) throws IOException {
/** {@link StateNamespace} that is scoped to a specific window. */
public static class WindowNamespace<W extends BoundedWindow> implements StateNamespace {

private Coder<W> windowCoder;
private W window;
private final Coder<W> windowCoder;
private final W window;

private WindowNamespace(Coder<W> windowCoder, W window) {
this.windowCoder = windowCoder;
Expand Down
Loading

0 comments on commit 27aa65e

Please sign in to comment.