diff src/org/eclipse/jetty/io/Connection.java @ 973:4d9fe9cc554d

simplify AbstractConnection
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 15 Oct 2016 23:03:00 -0600
parents 5ee36654b383
children 7422ca1ae146
line wrap: on
line diff
--- a/src/org/eclipse/jetty/io/Connection.java	Sat Oct 15 22:42:05 2016 -0600
+++ b/src/org/eclipse/jetty/io/Connection.java	Sat Oct 15 23:03:00 2016 -0600
@@ -42,20 +42,8 @@
 	void handle() throws IOException;
 
 	/**
-	 * @return the timestamp at which the connection was created
-	 */
-	long getTimeStamp();
-
-	/**
 	 * @return whether this connection is idle, that is not parsing and not generating
 	 * @see #onIdleExpired(long)
 	 */
 	boolean isIdle();
-
-	/**
-	 * Called when the connection idle timeout expires
-	 * @param idleForMs how long the connection has been idle
-	 * @see #isIdle()
-	 */
-	void onIdleExpired(long idleForMs);
 }