AsyncHandlerInterceptor.afterConcurrentHandlingStarted declared as default method

Issue: SPR-15702
This commit is contained in:
Juergen Hoeller
2017-06-26 18:58:39 +02:00
parent ba3a12e4cc
commit 155a1c6c71

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2017 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.
@@ -60,8 +60,8 @@ import org.springframework.web.method.HandlerMethod;
public interface AsyncHandlerInterceptor extends HandlerInterceptor {
/**
* Called instead of {@code postHandle} and {@code afterCompletion}, when
* the a handler is being executed concurrently.
* Called instead of {@code postHandle} and {@code afterCompletion}
* when the handler is being executed concurrently.
* <p>Implementations may use the provided request and response but should
* avoid modifying them in ways that would conflict with the concurrent
* execution of the handler. A typical use of this method would be to
@@ -72,7 +72,9 @@ public interface AsyncHandlerInterceptor extends HandlerInterceptor {
* execution, for type and/or instance examination
* @throws Exception in case of errors
*/
void afterConcurrentHandlingStarted(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception;
default void afterConcurrentHandlingStarted(
HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception {
}
}