com.google.sitebricks.channel.ContinuationRoutingServlet Maven / Gradle / Ivy
package com.google.sitebricks.channel;
import javax.inject.Singleton;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* Uses Jetty continuations, i.e. comet long-polling.
*
* @author [email protected] (Dhanji R. Prasanna)
*/
@Singleton
class ContinuationRoutingServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// ContinuationSupport
}
}