blob: 22f8d66ce6f4a145623a78d2b9c7fe09c4f776af [file] [log] [blame]
/**
* 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.tez.runtime.api;
import java.util.List;
/**
* Represents an Output through which a TezProcessor writes information on an
* edge. </p>
*
* <code>Output</code> implementations must have a 0 argument public constructor
* for Tez to construct the <code>Output</code>. Tez will take care of
* initializing and closing the Input after a {@link Processor} completes. </p>
*/
public interface Output {
/**
* Initializes the <code>Output</code>
*
* @param outputContext
* the {@link TezOutputContext}
* @return
* @throws Exception
* if an error occurs
*/
public List<Event> initialize(TezOutputContext outputContext)
throws Exception;
/**
* Gets an instance of the {@link Writer} in an <code>Output</code>
*
* @return
* @throws Exception
* if an error occurs
*/
public Writer getWriter() throws Exception;
/**
* Handles user and system generated {@link Events}s, which typically carry
* information such as a downstream vertex being ready to consume input.
*
* @param outputEvents
* the list of {@link Event}s
*/
public void handleEvents(List<Event> outputEvents);
/**
* Closes the <code>Output</code>
*
* @return
* @throws Exception
* if an error occurs
*/
public List<Event> close() throws Exception;
}