com.github.houbbbbb.sso.nt.util.HandlerUtils Maven / Gradle / Ivy
The newest version!
package com.github.houbbbbb.sso.nt.util;
import io.netty.channel.ChannelHandlerContext;
/**
* @todo:
* @author: hbw
* @date: 2020/7/7
**/
public final class HandlerUtils {
public static final String ENTER = "\n";
private HandlerUtils() {}
public static void wt(ChannelHandlerContext ctx, String re) {
re += ENTER;
ctx.writeAndFlush(re);
}
public static String rd(Object msg) {
return (String) msg;
}
}