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

com.github.bingoohuang.blackcat.sdk.netty.BlackcatServerHandler Maven / Gradle / Ivy

package com.github.bingoohuang.blackcat.sdk.netty;

import com.github.bingoohuang.blackcat.sdk.BlackcatMsgHandler;
import com.github.bingoohuang.blackcat.sdk.protobuf.BlackcatMsg.BlackcatReq;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import lombok.AllArgsConstructor;

@AllArgsConstructor
public class BlackcatServerHandler extends SimpleChannelInboundHandler {
    private final BlackcatMsgHandler blackcatMsgHandler;

    @Override
    public void channelRead0(ChannelHandlerContext ctx, BlackcatReq req) throws Exception {
        blackcatMsgHandler.handle(req, ctx);
    }

    @Override
    public void channelReadComplete(ChannelHandlerContext ctx) {
        ctx.flush();
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
        cause.printStackTrace();
        ctx.close();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy