Note: The {@link java.util.concurrent.Executors} class includes a set ofmethods that can convert some other common closure-like objects, for example, {@link java.security.PrivilegedAction} to {@link Callable} before executing them.
Implementing this interface also indicates that the {@link #execute(Runnable)}method will not execute its Runnable in the caller's thread but rather asynchronously in some other thread. @author Juergen Hoeller @since 2.0.3 @see SimpleAsyncTaskExecutor @see org.springframework.scheduling.SchedulingTaskExecutor @see java.util.concurrent.Callable @see java.util.concurrent.Executors
|
|