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

org.infinispan.distexec.spi.DefaultDistributedTaskLifecycle Maven / Gradle / Ivy

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

import java.util.concurrent.Callable;

import org.infinispan.Cache;
import org.kohsuke.MetaInfServices;

@MetaInfServices
public class DefaultDistributedTaskLifecycle implements DistributedTaskLifecycle {

   @Override
   public  void onPreExecute(Callable task, Cache  inputCache) {
      // intentionally no-op
   }

   @Override
   public  void onPostExecute(Callable task) {
      // intentionally no-op
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy