Interface ServerContext.Callable

  • Enclosing interface:
    ServerContext

    public static interface ServerContext.Callable
    The dispatch callable contract.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void call​(javax.servlet.ServletContext context, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
      The callback
    • Method Detail

      • call

        void call​(javax.servlet.ServletContext context,
                  javax.servlet.http.HttpServletRequest request,
                  javax.servlet.http.HttpServletResponse response)
           throws javax.servlet.ServletException,
                  IOException
        The callback
        Parameters:
        context - the servlet context
        request - the servlet request
        response - the servle response
        Throws:
        javax.servlet.ServletException - any exception
        IOException