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

com.zx.sms.handler.smpp.EnquireLinkMessageHandler Maven / Gradle / Ivy

package com.zx.sms.handler.smpp;

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

import com.zx.sms.codec.smpp.msg.EnquireLink;

@Sharable
public class EnquireLinkMessageHandler extends SimpleChannelInboundHandler{
	
	@Override
	protected void channelRead0(ChannelHandlerContext ctx, EnquireLink msg) throws Exception {
		ctx.writeAndFlush(msg.createResponse());
		
	}}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy