All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.service.ndx.pipeline.SubtaskOp Maven / Gradle / Ivy

package com.bigdata.service.ndx.pipeline;

/**
 * An operation which can be mapped across subtasks.
 * 
 * @author Bryan Thompson
 * @version $Id$
 * @param 
 */
public interface SubtaskOp {
    
    public void call(S s) throws Exception;
    
}