WW-4874 Updates parent version

This commit is contained in:
Yasser Zamani
2017-11-25 19:40:25 +03:30
committed by Yasser Zamani
parent 4ac287abd7
commit e65d77bae1
4 changed files with 4 additions and 4 deletions
@@ -24,7 +24,7 @@ import java.util.concurrent.Callable;
* Adds support for invoke async actions. This allows us to support action methods that return {@link Callable}
* as well as invoking them in separate not-container thread then executing the result in another container thread.
*
* @since 2.5.14
* @since 2.6
*/
public interface AsyncManager {
boolean hasAsyncActionResult();
+1 -1
View File
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-plugins</artifactId>
<version>2.5.14-SNAPSHOT</version>
<version>2.6-SNAPSHOT</version>
</parent>
<artifactId>struts2-async-plugin</artifactId>
@@ -24,7 +24,7 @@ import java.util.concurrent.Executor;
/**
* A {@link Callable} with a timeout value and an {@link Executor}.
*
* @since 2.5.14
* @since 2.6
*/
public class AsyncAction implements Callable {
private Callable callable;
@@ -35,7 +35,7 @@ import java.util.concurrent.atomic.AtomicInteger;
/**
* Implements {@link AsyncManager} to add support for invoke async actions via Servlet 3's API.
*
* @since 2.5.14
* @since 2.6
*/
public class DefaultAsyncManager implements AsyncManager, AsyncListener {
private static final Logger LOG = LogManager.getLogger(DefaultAsyncManager.class);