Commit a2bbe636 authored by AfirSraftGarrier's avatar AfirSraftGarrier

格式并加些打印

parent 23797f49
...@@ -8,13 +8,12 @@ import lombok.extern.slf4j.Slf4j; ...@@ -8,13 +8,12 @@ import lombok.extern.slf4j.Slf4j;
@Data @Data
@Slf4j @Slf4j
public class BaseConnectionListener implements ChannelFutureListener { public class BaseConnectionListener implements ChannelFutureListener {
public String appId;
public String host;
public int port;
public String appId; @Override
public String host; public void operationComplete(ChannelFuture future) {
public int port; log.info("重写了operationComplete方法");
@Override }
public void operationComplete(ChannelFuture future) {
// TODO Auto-generated method stub
log.info("重写了operationComplete方法");
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment