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

org.infinispan.distexec.mapreduce.spi.MapReduceTaskLifecycle Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.distexec.mapreduce.spi;

import org.infinispan.Cache;
import org.infinispan.distexec.mapreduce.Mapper;
import org.infinispan.distexec.mapreduce.Reducer;

public interface MapReduceTaskLifecycle {

    void onPreExecute(Mapper  mapper, Cache inputCache);

    void onPostExecute(Mapper  mapper);
   
    void onPreExecute(Reducer  reducer, Cache inputCache);

    void onPostExecute(Reducer  reducer);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy