| java.lang.Object org.springframework.scheduling.commonj.DelegatingWork
DelegatingWork | public class DelegatingWork implements Work(Code) | | Simple Work adapter that delegates to a given Runnable.
author: Juergen Hoeller since: 2.0 See Also: commonj.work.Work See Also: java.lang.Runnable |
getDelegate | final public Runnable getDelegate()(Code) | | Return the wrapped Runnable implementation.
|
release | public void release()(Code) | | This implementation is empty, since we expect the Runnable
to terminate based on some specific shutdown signal.
|
run | public void run()(Code) | | Delegates execution to the underlying Runnable.
|
|
|