/*********************************************************************************************************************** * Copyright (C) 2010-2013 by the Stratosphere project (http://stratosphere.eu) * * Licensed 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 eu.stratosphere.pact.runtime.task.util; import java.io.IOException; import java.util.Iterator; import eu.stratosphere.nephele.services.memorymanager.MemoryAllocationException; /** * Interface describing the methods that have to be implemented by local strategies for the CoGroup Pact. * * @param T1 The generic type of the first input's data type. * @param T2 The generic type of the second input's data type. */ public interface CoGroupTaskIterator<T1, T2> { /** * General-purpose open method. * * @throws IOException * @throws MemoryAllocationException * @throws InterruptedException */ void open() throws IOException, MemoryAllocationException, InterruptedException; /** * General-purpose close method. */ void close(); /** * Moves the internal pointer to the next key (if present). Returns true if the operation was * successful or false if no more keys are present. * <p> * The key is not necessarily shared by both inputs. In that case an empty iterator is * returned by getValues1() or getValues2(). * * @return true on success, false if no more keys are present * @throws IOException * @throws InterruptedException */ boolean next() throws IOException; /** * Returns an iterable over the left input values for the current key. * * @return an iterable over the left input values for the current key. */ Iterator<T1> getValues1(); /** * Returns an iterable over the left input values for the current key. * * @return an iterable over the left input values for the current key. */ Iterator<T2> getValues2(); }