Mercurial Hosting > luan
comparison src/org/eclipse/jetty/io/Connection.java @ 974:7422ca1ae146
remove Connection.isIdle()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 15 Oct 2016 23:27:08 -0600 |
parents | 4d9fe9cc554d |
children |
comparison
equal
deleted
inserted
replaced
973:4d9fe9cc554d | 974:7422ca1ae146 |
---|---|
38 /** | 38 /** |
39 * Handle the connection. | 39 * Handle the connection. |
40 * @throws IOException if the handling of I/O operations fail | 40 * @throws IOException if the handling of I/O operations fail |
41 */ | 41 */ |
42 void handle() throws IOException; | 42 void handle() throws IOException; |
43 | |
44 /** | |
45 * @return whether this connection is idle, that is not parsing and not generating | |
46 * @see #onIdleExpired(long) | |
47 */ | |
48 boolean isIdle(); | |
49 } | 43 } |