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 Type
    Method
    Description
    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.
  • 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 object
      response - The response object
      session - 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)