码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-07-28 21:23:11      阅读:114      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!