Mercurial Hosting > luan
comparison src/org/eclipse/jetty/io/Connection.java @ 959:7b94f5b33c64
remove onClose()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 13 Oct 2016 18:53:26 -0600 |
parents | 3428c60d7cfc |
children | 866f2e801618 |
comparison
equal
deleted
inserted
replaced
958:fc521d2f098e | 959:7b94f5b33c64 |
---|---|
62 */ | 62 */ |
63 // TODO: rename to isReadInterested() in the next release | 63 // TODO: rename to isReadInterested() in the next release |
64 boolean isSuspended(); | 64 boolean isSuspended(); |
65 | 65 |
66 /** | 66 /** |
67 * Called after the connection is closed | |
68 */ | |
69 void onClose(); | |
70 | |
71 /** | |
72 * Called when the connection idle timeout expires | 67 * Called when the connection idle timeout expires |
73 * @param idleForMs how long the connection has been idle | 68 * @param idleForMs how long the connection has been idle |
74 * @see #isIdle() | 69 * @see #isIdle() |
75 */ | 70 */ |
76 void onIdleExpired(long idleForMs); | 71 void onIdleExpired(long idleForMs); |