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

com.meliorbis.numerics.threading.ComputableRecursiveTask Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
package com.meliorbis.numerics.threading;

import java.util.concurrent.Callable;

/**
  * A Callable which produces a result in which the 'compute' method is called from
 * call by default.
 */
public interface ComputableRecursiveTask extends Callable
{
    T compute() throws Exception;

	@Override
	default T call() throws Exception
	{
		return compute();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy