Fixed a bug where the CodecEmbedder implementations do not generate the close request - this issue prevented some encoders like ZlibEncoder from generating the footer

This commit is contained in:
Trustin Lee 2010-08-26 05:38:34 +00:00
parent d223c2905d
commit 2eb2901c1c

View File

@ -102,6 +102,7 @@ abstract class AbstractCodecEmbedder<E> implements CodecEmbedder<E> {
}
public boolean finish() {
close(channel);
fireChannelDisconnected(channel);
fireChannelUnbound(channel);
fireChannelClosed(channel);