masteryhx commented on code in PR #19679:
URL: https://github.com/apache/flink/pull/19679#discussion_r937944364


##########
flink-state-backends/flink-statebackend-changelog/src/main/java/org/apache/flink/state/changelog/ChangelogKeyGroupedPriorityQueue.java:
##########
@@ -133,11 +133,25 @@ public StateChangeApplier 
getChangeApplier(ChangelogApplierFactory factory) {
         return factory.forPriorityQueue(delegatedPriorityQueue, serializer);
     }
 
+    @Override
+    @SuppressWarnings("unchecked")
+    public <IS> void setDelegatedState(IS state) {
+        this.delegatedPriorityQueue = (KeyGroupedInternalPriorityQueue<T>) 
checkNotNull(state);
+    }
+
+    public StateChangeLogger<T, Void> getStateChangeLogger() {
+        return logger;
+    }
+
     @Override
     public void resetWritingMetaFlag() {
         logger.resetWritingMetaFlag();
     }
 
+    public TypeSerializer<T> getSerializer() {
+        return serializer;
+    }
+

Review Comment:
   removed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to