Files
codeql/java/ql/test/stubs/netty-4.1.x/io/netty/channel/ChannelHandler.java
2023-03-23 14:37:30 +00:00

13 lines
363 B
Java
Generated

// Generated automatically from io.netty.channel.ChannelHandler for testing purposes
package io.netty.channel;
import io.netty.channel.ChannelHandlerContext;
public interface ChannelHandler
{
void exceptionCaught(ChannelHandlerContext p0, Throwable p1);
void handlerAdded(ChannelHandlerContext p0);
void handlerRemoved(ChannelHandlerContext p0);
}