/** * AnalyzerBeans * Copyright (C) 2014 Neopost - Customer Information Management * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.eobjects.analyzer.job.runner; import org.eobjects.analyzer.beans.api.Concurrent; import org.eobjects.analyzer.data.InputColumn; import org.eobjects.analyzer.data.InputRow; import org.eobjects.analyzer.job.ComponentJob; /** * Interface for objects that recieve rows from the RowProcessingPublisher. * * */ public interface RowProcessingConsumer { /** * @return the columns generated by this consumer */ public InputColumn<?>[] getOutputColumns(); /** * @return true if this consumer is thread-safe and can thusly be invoked by * several threads at the same time. * * @see Concurrent */ public boolean isConcurrent(); /** * @return the required input columns for this consumer */ public InputColumn<?>[] getRequiredInput(); /** * @param availableOutcomesInFlow * a collection of all outcomes that <i>can</i> be available to * the consumer given the proposed flow order. * @return whether or not the requirements (in terms of required outcomes) * are sufficient for adding this consumer into the execution flow. * If false the ordering mechanism will try to move the consumer to * a later stage in the flow. */ public boolean satisfiedForFlowOrdering(FilterOutcomes availableOutcomesInFlow); /** * @param outcomes * the current available outcomes in the processing of the * particular row. * @return whether or not the requirements (in terms of required outcomes) * are sufficient for including this component for a particular * row's processing. If false, this component will be skipped. */ public boolean satisfiedForConsume(FilterOutcomes outcomes, InputRow inputRow); /** * Main method of the consumer. Recieves the input row, dispatches it to the * bean that needs to process it and returns the row for the next component * in the chain to process (often the same row). * * @param row * @param distinctCount * @param outcomes */ public void consume(InputRow row, int distinctCount, FilterOutcomes outcomes, RowProcessingChain chain); /** * @return the componbent job */ public ComponentJob getComponentJob(); /** * @return the component instance */ public Object getComponent(); }