| javax.servlet.http.HttpServlet org.directwebremoting.jaxer.servlet.DwrJaxerServlet
DwrJaxerServlet | public class DwrJaxerServlet extends HttpServlet (Code) | | This is the main servlet for the DWR/Jaxer integration.
It handles all the requests to DWR from the Jaxer server. Currently this
communication looks just like normal DWR, however as this project evolves
it is likely that some of the processing done by
UrlProcessor will
be superseded by a protocol that takes advantage of a single connection.
author: Joe Walker [joe at getahead dot ltd dot uk] |
destroy | public void destroy()(Code) | | |
shutdown | public void shutdown()(Code) | | Kill all comet polls.
Technically a servlet engine ought to call this only when all the
threads are already removed, however at least Tomcat doesn't do this
properly (it waits for a while and then calls destroy anyway).
It would be good if we could get
DwrJaxerServlet.destroy() to call this
method however destroy() is only called once all threads are done so it's
too late.
|
Methods inherited from javax.servlet.http.HttpServlet | protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected long getLastModified(HttpServletRequest req)(Code)(Java Doc) protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)
|
|
|