StefanRRichter commented on a change in pull request #7899: [FLINK-11731] [State Backends] Make DefaultOperatorStateBackend follow the builder pattern URL: https://github.com/apache/flink/pull/7899#discussion_r262484441
########## File path: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/BackendRestorerProcedure.java ########## @@ -50,7 +49,7 @@ * @param <S> type of the supplied snapshots from which the backend restores. */ public class BackendRestorerProcedure< - T extends Closeable & Disposable & Snapshotable<?, Collection<S>>, + T extends Closeable & Disposable & SnapshotStrategy<?>, Review comment: We can remove the `& SnapshotStrategy<?>` part here, becaues we don't invoke anymore methods from that interface. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
