/**
* Drop the connection to the remote host and release the underlying
* connector thread if it has been created
* */
public void cleanUp() {
if(stw != null) {
try {
stw.close();
} catch(IOException e) {
if (e instanceof InterruptedIOException) {
Thread.currentThread().interrupt();
}
LogLog.error("Could not close stw.", e);
}
stw = null;
}
if(connector != null) {
//LogLog.debug("Interrupting the connector.");
connector.interrupted = true;
connector = null; // allow gc
}
}
SyslogTcpAppender.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:openrasp
作者:
评论列表
文章目录