}
protected void initSocketManager(CometConfigMetadata cometConfig)
throws ServletException {
SocketManager socketManager = creatSocketManager();
socketManager.startTimer();
Integer timeout = cometConfig.getTimeout();
if (null != timeout) {
long asyncTimeout = (long) (60000l * timeout);
socketManager.setAsyncTimeout(asyncTimeout);
}