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

com.ontology2.bakemono.abstractions.KeyValueAcceptor Maven / Gradle / Ivy

There is a newer version: 3.2
Show newest version
package com.ontology2.bakemono.abstractions;

import java.io.IOException;

import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Mapper.Context;

public interface KeyValueAcceptor {
    public void write(K k,V v,Mapper.Context c) throws IOException,InterruptedException;
    public void close(Mapper.Context c) throws IOException, InterruptedException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy