Deprecated "scheduling.backportconcurrent" package in favor of native JDK 6 "scheduling.concurrent" support

This commit is contained in:
Juergen Hoeller
2012-11-25 21:08:06 +01:00
parent 4dc336920c
commit b0c6a24974
3 changed files with 6 additions and 0 deletions

View File

@@ -54,7 +54,9 @@ import org.springframework.scheduling.SchedulingTaskExecutor;
* @see edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor
* @see edu.emory.mathcs.backport.java.util.concurrent.Executors
* @see ThreadPoolTaskExecutor
* @deprecated as of Spring 3.2, in favor of using the native JDK 6 concurrent support
*/
@Deprecated
public class ConcurrentTaskExecutor implements SchedulingTaskExecutor, Executor {
private Executor concurrentExecutor;

View File

@@ -32,7 +32,9 @@ import org.springframework.util.CustomizableThreadCreator;
* @since 2.0.3
* @see #setThreadNamePrefix
* @see #setThreadPriority
* @deprecated as of Spring 3.2, in favor of using the native JDK 6 concurrent support
*/
@Deprecated
public class CustomizableThreadFactory extends CustomizableThreadCreator implements ThreadFactory {
/**

View File

@@ -72,7 +72,9 @@ import org.springframework.util.Assert;
* @see edu.emory.mathcs.backport.java.util.concurrent.ScheduledThreadPoolExecutor
* @see edu.emory.mathcs.backport.java.util.concurrent.Executors
* @see ConcurrentTaskExecutor
* @deprecated as of Spring 3.2, in favor of using the native JDK 6 concurrent support
*/
@Deprecated
public class ThreadPoolTaskExecutor extends CustomizableThreadFactory
implements SchedulingTaskExecutor, Executor, BeanNameAware, InitializingBean, DisposableBean {