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

com.jiuxian.mossrose.job.MapReduceJob Maven / Gradle / Ivy

There is a newer version: 2.4.4-RELEASE
Show newest version
package com.jiuxian.mossrose.job;

import java.io.Serializable;
import java.util.List;

public interface MapReduceJob extends RunnableJob {

	Mapper mapper();

	Executor executor();

	Reducer reducer();

	interface Mapper {
		List map();
	}

	interface Executor {
		R execute(M item);
	}

	interface Reducer {
		void reduce(List rs);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy