The request handlers are invoked in the reverse order in which they were added to the session until a response has been produced. This means that the most recently added handler is used first and the first request handler that was added to the session is invoked towards the end unless any previous handler has already produced a response.
The session is not locked during execution of the request handlers. The request handler can itself decide if it needs to lock the session or not.
@see VaadinSession#addRequestHandler(RequestHandler) @see RequestHandler @since 7.1
|
|
|
|