Forcefully making jetty-io compile (and letting sbordet fix it later)

This commit is contained in:
Joakim Erdfelt 2012-07-18 12:07:40 -07:00
parent 960491cc64
commit 1c51e82b87
2 changed files with 13 additions and 1 deletions

View File

@ -222,7 +222,7 @@ public class ByteArrayEndPoint extends AbstractEndPoint
public void close()
{
_closed=true;
onClose();
// TODO: for sbordet to fix - onClose();
}
/* ------------------------------------------------------------ */

View File

@ -177,6 +177,18 @@ public class SslConnection extends AbstractAsyncConnection
private boolean _netWriting;
private boolean _underflown;
private boolean _ishut=false;
@Override
public void onOpen()
{
// TODO for sbordet to fix
}
@Override
public void onClose()
{
// TODO for sbordet to fix
}
private final Callback<Void> _writeCallback = new Callback<Void>(){