Package org.vaadin.spring.request
Interface VaadinRequestEndListener
public interface VaadinRequestEndListener
Interface to be implemented by managed (singleton) beans that want to be notified when a Vaadin request ends.
The listeners are not invoked in any particular order.
- Author:
- Petter Holmström (petter@vaadin.com)
-
Method Summary
Modifier and TypeMethodDescriptionvoidonRequestEnd(com.vaadin.server.VaadinRequest request, com.vaadin.server.VaadinResponse response, com.vaadin.server.VaadinSession session) Called after Vaadin has handled a request and the response has been written.
-
Method Details
-
onRequestEnd
void onRequestEnd(com.vaadin.server.VaadinRequest request, com.vaadin.server.VaadinResponse response, com.vaadin.server.VaadinSession session) Called after Vaadin has handled a request and the response has been written.- Parameters:
request- The request objectresponse- The response objectsession- The session which was used during the request or null if the request did not use a session- See Also:
-
VaadinService.requestEnd(com.vaadin.server.VaadinRequest, com.vaadin.server.VaadinResponse, com.vaadin.server.VaadinSession)
-