com.zx.sms.handler.sgip.SgipUnbindResponseMessageHandler Maven / Gradle / Ivy
package com.zx.sms.handler.sgip;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import com.zx.sms.codec.sgip12.msg.SgipUnbindResponseMessage;
public class SgipUnbindResponseMessageHandler extends SimpleChannelInboundHandler{
@Override
protected void channelRead0(ChannelHandlerContext ctx, SgipUnbindResponseMessage msg) throws Exception {
ctx.channel().close();
}}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy