Interface Producer<T>
-
- Type Parameters:
T- type of the produced result.
- All Superinterfaces:
Callable<T>
public interface Producer<T> extends Callable<T>
This interface extendsCallableinterface but removes the exception fromcalldeclaration.This convenience interface may be used in places where a task producing a result needs to be executed in the request scope but no
checked exceptionsare thrown during the task execution.- Author:
- Marek Potociar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcall()
-