You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by as...@apache.org on 2011/07/08 11:38:20 UTC

svn commit: r1144215 - /httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/reactor/IOSession.java

Author: asankha
Date: Fri Jul  8 09:38:20 2011
New Revision: 1144215

URL: http://svn.apache.org/viewvc?rev=1144215&view=rev
Log:
undo changes to the IOSession interface to expose started, last read/write and access times

Modified:
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/reactor/IOSession.java

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/reactor/IOSession.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/reactor/IOSession.java?rev=1144215&r1=1144214&r2=1144215&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/reactor/IOSession.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/reactor/IOSession.java Fri Jul  8 09:38:20 2011
@@ -233,27 +233,4 @@ public interface IOSession {
      */
     Object removeAttribute(String name);
 
-    /**
-     * Return the IO Session start time in milliseconds
-     * @return IO Session start time in milliseconds
-     */
-    public long getStartedTime();
-
-    /**
-     * Return the IO Session last read time in milliseconds
-     * @return IO Session last read time in milliseconds
-     */
-    public long getLastReadTime();
-
-    /**
-     * Return the IO Session last write time in milliseconds
-     * @return IO Session last write time in milliseconds
-     */
-    public long getLastWriteTime();
-
-    /**
-     * Return the IO Session last access time in milliseconds
-     * @return IO Session last access time in milliseconds
-     */
-    public long getLastAccessTime();
 }