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

net.sf.hajdbc.state.health.Task Maven / Gradle / Ivy

There is a newer version: 3.6.61
Show newest version
package net.sf.hajdbc.state.health;

import java.util.concurrent.Callable;

/**
 * @author yangzj
 * @date 2019/12/31
 */
public interface Task extends Callable {
  V failed(Exception e);
  void success(V value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy