blob: 988823e8f979493d00e079ae8757e79b97be0bc3 [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.wayang.giraph.operators;
import java.util.Collection;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.plan.wayangplan.ExecutionOperator;
import org.apache.wayang.core.platform.ChannelInstance;
import org.apache.wayang.core.platform.lineage.ExecutionLineageNode;
import org.apache.wayang.core.util.Tuple;
import org.apache.wayang.giraph.execution.GiraphExecutor;
/**
* {@link ExecutionOperator} that can be run by the {@link GiraphExecutor}.
*/
public interface GiraphExecutionOperator extends ExecutionOperator{
/**
* Evaluates this operator. Takes a set of inputs and produces a set of outputs.
* <p>In addition, this method should give feedback of what this instance was doing by wiring the
* {@link org.apache.wayang.core.platform.lineage.LazyExecutionLineageNode}s of input and ouput {@link ChannelInstance}s and
* providing a {@link Collection} of executed {@link OptimizationContext.OperatorContext}s.</p>
*
* @param inputs {@link ChannelInstance}s that satisfy the inputs of this operator
* @param outputs {@link ChannelInstance}s that collect the outputs of this operator
* @param operatorContext {@link OptimizationContext.OperatorContext} of this instance
* @return {@link Collection}s of what has been executed and produced
*/
Tuple<Collection<ExecutionLineageNode>, Collection<ChannelInstance>> execute(ChannelInstance[] inputs,
ChannelInstance[] outputs,
GiraphExecutor giraphExecutor,
OptimizationContext.OperatorContext operatorContext);
}