org.infinispan.distexec.mapreduce.spi.DefaultMapReduceTaskLifecycle Maven / Gradle / Ivy
package org.infinispan.distexec.mapreduce.spi;
import org.infinispan.Cache;
import org.infinispan.distexec.mapreduce.Mapper;
import org.infinispan.distexec.mapreduce.Reducer;
import org.kohsuke.MetaInfServices;
@MetaInfServices
public class DefaultMapReduceTaskLifecycle implements MapReduceTaskLifecycle {
@Override
public void onPreExecute(Mapper mapper, Cache inputCache) {
// intentionally no-op
}
@Override
public void onPostExecute(Mapper mapper) {
// intentionally no-op
}
@Override
public void onPreExecute(Reducer reducer, Cache, ?> inputCache) {
// intentionally no-op
}
@Override
public void onPostExecute(Reducer reducer) {
// intentionally no-op
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy