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

com.zx.sms.handler.smgp.SMGPExitRespMessageHandler Maven / Gradle / Ivy

package com.zx.sms.handler.smgp;

import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.ChannelHandler.Sharable;

import com.zx.sms.codec.smgp.msg.SMGPExitRespMessage;
@Sharable
public class SMGPExitRespMessageHandler extends SimpleChannelInboundHandler{

	@Override
	protected void channelRead0(ChannelHandlerContext ctx, SMGPExitRespMessage msg) throws Exception {
		ctx.channel().close();
	}}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy