首页 > 其他 > 详细

使用jetty实现服务器端推的技术

时间:2015-07-28 21:22:09      阅读:183      评论:0      收藏:0      [点我收藏+]
public class ContinuationServlet extends HttpServlet {

	  public void service(HttpServletRequest req, HttpServletResponse res)
	                                              throws java.io.IOException {

	    String reqId = req.getParameter("id");
	    
	    Continuation cc = ContinuationSupport.getContinuation(req,null);

	    res.setContentType("text/plain");
	    res.getWriter().println("Request: "+reqId+"\tstart:\t"+new Date());
	    res.getWriter().flush();

	    cc.suspend(2000);
	    
	    res.getWriter().println("Request: "+reqId+"\tend:\t"+new Date());
	  }
	}

相关的文章:

http://www.ibm.com/developerworks/cn/java/j-jettydwr/

http://www.ibm.com/developerworks/cn/java/j-lo-comet/

使用jetty实现服务器端推的技术

原文:http://my.oschina.net/u/1462124/blog/484830

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!