Replacement for ChannelEvent and CustomEvent in Netty 4

182 Views Asked by At

I am working on upgrading an Netty3 application to Netty4. The application currently uses custom events by extending the ChannelEvent class and I am not sure how to translates this to Netty 4 because ChannelEvent seem to have been gone in Netty4, and unlike in Netty3, in Netty 4, there is no handler method that receives a channel event.

The current code in Netty 3 looks like this:

A custom event is defined:

public class CustomEvent implements ChannelEvent {}

and in some handler down the line, there is some code that uses the event. For example:

public class AppHandler extends SimpleChannelDownstreamHandler {

@Override
public void handleDownstream(ChannelHandlerContext context, ChannelEvent event) {
  event.getChannel().write(new CustomEvent(...))
  context.sendDownstream(event)

}

}

How can this be translated to Netty 4? Not just the custom event part but also the context.sendDownstream(event) method call as this is no longer in Netty 4 also.

1

There are 1 best solutions below

2
On

so either you could use the write method and just write it there and then in your ChannelOutboundHandler you can check for it or maybe you can also use fireUserEvent. Not sure what is a better fit for your use case.