Callable,”The ____ interface: (1) Defines a task submitted to an ExecutorService (2) Is similar in nature to Runnable, but can: Return a result using generics

Average Rating
0 out of 5 stars. 0 votes.

Callable,”The ____ interface: (1) Defines a task submitted to an ExecutorService (2) Is similar in nature to Runnable, but can: Return a result using generics

throw a checked exception//examplepackage java.util.concurrent;public interface __ { V call() throws Exception;}”