[LANG-501] There was a problem with inconsistent line endings in the last commit, so the svn:eol-style property was not set. Fixing now.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@883101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
21df5c4fce
commit
63e4b09f23
|
@ -48,13 +48,11 @@ import java.util.concurrent.ExecutorService;
|
|||
*
|
||||
* <pre>
|
||||
* // a Callable that performs a complex computation
|
||||
* Callable<Integer> computationCallable = new MyComputationCallable();
|
||||
*
|
||||
* Callable<Integer> computationCallable = new MyComputationCallable();
|
||||
* // setup the background initializer
|
||||
* CallableBackgroundInitializer<Integer> initializer =
|
||||
* CallableBackgroundInitializer<Integer> initializer =
|
||||
* new CallableBackgroundInitializer(computationCallable);
|
||||
* initializer.start();
|
||||
*
|
||||
* // Now do some other things. Initialization runs in a parallel thread
|
||||
* ...
|
||||
* // Wait for the end of initialization and access the result
|
||||
|
@ -63,7 +61,7 @@ import java.util.concurrent.ExecutorService;
|
|||
*
|
||||
* </p>
|
||||
*
|
||||
* @version $Id: $
|
||||
* @version $Id$
|
||||
* @param <T> the type of the object managed by this initializer class
|
||||
*/
|
||||
public class CallableBackgroundInitializer<T> extends BackgroundInitializer<T> {
|
||||
|
|
Loading…
Reference in New Issue