Fix compilation errors

This commit is contained in:
Trustin Lee 2012-05-13 18:45:57 +09:00
parent 3642879d98
commit 6a0040a14e

View File

@ -77,10 +77,15 @@ public abstract class AbstractServerChannel extends AbstractChannel implements S
}
@Override
protected int doFlush() throws Exception {
protected int doFlush(boolean lastSpin) throws Exception {
throw new UnsupportedOperationException();
}
@Override
protected boolean inEventLoopDrivenFlush() {
return false;
}
private static class NoopQueue extends AbstractQueue<Object> {
@Override
public boolean offer(Object e) {