diff src/org/eclipse/jetty/continuation/Continuation.java @ 934:fe461f7cfc8e

simplify AsyncContinuation
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 09 Oct 2016 21:03:00 -0600
parents cd080b7bcf49
children aa7dc1802d29
line wrap: on
line diff
--- a/src/org/eclipse/jetty/continuation/Continuation.java	Sun Oct 09 20:25:02 2016 -0600
+++ b/src/org/eclipse/jetty/continuation/Continuation.java	Sun Oct 09 21:03:00 2016 -0600
@@ -155,7 +155,7 @@
 	 *            continuation after a call to {@link #suspend()} or {@link #suspend(ServletResponse)}.
 	 *            A timeout of <=0 means the continuation will never expire.
 	 */
-	void setTimeout(long timeoutMs);
+//	void setTimeout(long timeoutMs);
 
 	/* ------------------------------------------------------------ */
 	/**
@@ -305,7 +305,7 @@
 	 *                if the request is not suspended.
 	 * 
 	 */
-	void complete();
+//	void complete();
 
 	/* ------------------------------------------------------------ */
 	/**
@@ -313,7 +313,7 @@
 	 *         request has been redispatched due to being resumed, completed or
 	 *         timed out.
 	 */
-	boolean isSuspended();
+//	boolean isSuspended();
 
 	/* ------------------------------------------------------------ */
 	/**
@@ -352,7 +352,7 @@
 	 * @return True if {@link #suspend(ServletResponse)} has been passed a
 	 * {@link ServletResponseWrapper} instance.
 	 */
-	boolean isResponseWrapped();
+//	boolean isResponseWrapped();
 
 
 	/* ------------------------------------------------------------ */