[streaming] Removed unnecessary BatchIterator class
Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/46573a6a Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/46573a6a Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/46573a6a Branch: refs/heads/master Commit: 46573a6ae31d7fc7e794462f6428b4f8917cc4cb Parents: e01894c Author: Gyula Fora <[email protected]> Authored: Fri Apr 10 18:18:58 2015 +0200 Committer: Gyula Fora <[email protected]> Committed: Fri Apr 10 18:18:58 2015 +0200 ---------------------------------------------------------------------- .../api/invokable/operator/BatchIterator.java | 25 -------------------- 1 file changed, 25 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/46573a6a/flink-staging/flink-streaming/flink-streaming-core/src/main/java/org/apache/flink/streaming/api/invokable/operator/BatchIterator.java ---------------------------------------------------------------------- diff --git a/flink-staging/flink-streaming/flink-streaming-core/src/main/java/org/apache/flink/streaming/api/invokable/operator/BatchIterator.java b/flink-staging/flink-streaming/flink-streaming-core/src/main/java/org/apache/flink/streaming/api/invokable/operator/BatchIterator.java deleted file mode 100644 index c3475e9..0000000 --- a/flink-staging/flink-streaming/flink-streaming-core/src/main/java/org/apache/flink/streaming/api/invokable/operator/BatchIterator.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * 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.streaming.api.invokable.operator; - -import java.io.Serializable; -import java.util.Iterator; - -public interface BatchIterator<IN> extends Iterator<IN>, Serializable { - public void reset(); -}
