All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zodiac.sdk.simplenetty.handler.ChannelHandler Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.sdk.simplenetty.handler;

import org.zodiac.sdk.simplenetty.enums.ChannelHandlerType;

public interface ChannelHandler {

    ChannelHandlerType type();

    void channelActive(ChannelHandlerContext var1) throws Exception;

    void channelInactive(ChannelHandlerContext var1) throws Exception;

    Object channelRead(ChannelHandlerContext var1, Object var2) throws Exception;

    void channelReadComplete(ChannelHandlerContext var1) throws Exception;

    Object channelWrite(ChannelHandlerContext var1, Object var2) throws Exception;

    void channelWriteComplete(ChannelHandlerContext var1) throws Exception;

    void exceptionCaught(ChannelHandlerContext var1, Throwable var2);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy