List of usage examples for io.netty.channel.nio NioEventLoop isShutdown
@Override
public boolean isShutdown()
From source file:cn.wantedonline.puppy.httpserver.stat.NioWorkerStat.java
License:Apache License
private static String NioWorkerStatus(NioEventLoop w) { return w.isShutdown() ? "ShutDown" : w.isShuttingDown() ? "ShuttingDown" : w.isTerminated() ? "Terminated" : "Running"; }