This commit is contained in:
Trustin Lee 2009-06-19 11:36:31 +00:00
parent 629ae769d7
commit eaf931ac92
2 changed files with 14 additions and 0 deletions

View File

@ -37,6 +37,13 @@ import org.jboss.netty.channel.SimpleChannelHandler;
*/
public class IdleStateAwareChannelHandler extends SimpleChannelHandler {
/**
* Creates a new instance.
*/
public IdleStateAwareChannelHandler() {
super();
}
@Override
public void handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)
throws Exception {

View File

@ -37,6 +37,13 @@ import org.jboss.netty.channel.SimpleChannelUpstreamHandler;
*/
public class IdleStateAwareChannelUpstreamHandler extends SimpleChannelUpstreamHandler {
/**
* Creates a new instance.
*/
public IdleStateAwareChannelUpstreamHandler() {
super();
}
@Override
public void handleUpstream(ChannelHandlerContext ctx, ChannelEvent e)
throws Exception {