📄 channelutils.java
字号:
/****************************************************************************
* Package : com.ecSolutions.ecAppServer.server.util
* File : ChannelUtils.java
* Create Date : 2007-7-20
* Author : Steven Chen
*
* Copyright(C) 2006 ecSolutions(shanghai) Co.,Limited.All Rights Reserved.
*
***************************************************************************/
package com.ecSolutions.ecAppServer.server.util;
import java.io.IOException;
import java.nio.channels.Channel;
import java.nio.channels.Selector;
/**
* Utils for java nio channels.
*
* @author Steven Chen
* @version $Id: ChannelUtils.java,v 1.2 2007/07/26 04:00:44 stevenchen Exp $
*/
public final class ChannelUtils {
/**
* Close channel and ignore any exceptions.
*
* @param channel
* channel
*/
public static void close(final Channel channel) {
if (channel != null) {
try {
channel.close();
} catch (IOException e) {
}
}
}
/**
* Close selector and ignore any exceptions.
*
* @param selector
* selector
*/
public static void close(final Selector selector) {
if (selector != null) {
try {
selector.close();
} catch (IOException e) {
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -