Skip to content

Commit

Permalink
Deprecate internal classes related to concurrency in TaskExecutorRepe…
Browse files Browse the repository at this point in the history
…atTemplate

Related to #3949
Related to #3950
Related to #3951
  • Loading branch information
fmbenhassine committed Oct 12, 2022
1 parent 1ff04d5 commit bd9d0d9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2007 the original author or authors.
* Copyright 2006-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -23,7 +23,10 @@
* Interface for result holder.
*
* @author Dave Syer
* @author Mahmoud Ben Hassine
* @deprecated since 5.0 with no replacement. Scheduled for removal in 6.0.
*/
@Deprecated(since = "5.0", forRemoval = true)
interface ResultHolder {

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2007 the original author or authors.
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,7 +29,10 @@
* results, limiting it to a maximum at any given time.
*
* @author Dave Syer
* @author Mahmoud Ben Hassine
* @deprecated since 5.0 with no replacement. Scheduled for removal in 6.0.
*/
@Deprecated(since = "5.0", forRemoval = true)
public class ResultHolderResultQueue implements ResultQueue<ResultHolder> {

// Accumulation of result objects as they finish.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2007 the original author or authors.
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -30,7 +30,10 @@
*
* @author Dave Syer
* @author Ben Hale
* @author Mahmoud Ben Hassine
* @deprecated since 5.0 with no replacement. Scheduled for removal in 6.0.
*/
@Deprecated(since = "5.0", forRemoval = true)
interface ResultQueue<T> {

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2007 the original author or authors.
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -26,7 +26,10 @@
* results, limiting it to a maximum at any given time.
*
* @author Dave Syer
* @author Mahmoud Ben Hassine
* @deprecated since 5.0 with no replacement. Scheduled for removal in 6.0.
*/
@Deprecated(since = "5.0", forRemoval = true)
public class ThrottleLimitResultQueue<T> implements ResultQueue<T> {

// Accumulation of result objects as they finish.
Expand Down

0 comments on commit bd9d0d9

Please sign in to comment.