kl0u commented on a change in pull request #13576: URL: https://github.com/apache/flink/pull/13576#discussion_r503729631
########## File path: flink-core/src/main/java/org/apache/flink/api/connector/sink/Committer.java ########## @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package org.apache.flink.api.connector.sink; + +import org.apache.flink.annotation.Experimental; + +import java.util.List; + +/** + * This interface is responsible for committing the data to the external system. + * + * @param <CommT> The type of the committable data. + */ +@Experimental +public interface Committer<CommT> extends AutoCloseable { + + /** + * Commit the given collection of {@link CommT}. + * @param committable the data needed to be committed. + * @return a collection of {@link CommT} that is needed to re-commit latter. Review comment: Yes, I think you are right. Let's leave it out from the javadoc and maybe explain it somewhere else (e.g. a blogpost at the end). ---------------------------------------------------------------- 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: us...@infra.apache.org