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

cn.micro.core.function.CheckedCallable Maven / Gradle / Ivy

package cn.micro.core.function;

import org.springframework.lang.Nullable;

import java.io.Serializable;

/**
 * 受检的 Callable
 */
@FunctionalInterface
public interface CheckedCallable extends Serializable {

	/**
	 * Run this callable.
	 *
	 * @return result
	 * @throws Throwable CheckedException
	 */
	@Nullable
	T call() throws Throwable;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy