6465666768697071727374
@Override public void run() { IApnsConnection conn = null; try { conn = getConnection(); conn.sendNotification(token, payload); } catch (Exception e) { logger.error(e.getMessage(), e); } finally { if (conn != null) { connPool.returnConn(conn);
8384858687888990919293
@Override public void run() { IApnsConnection conn = null; try { conn = getConnection(); conn.sendNotification(notification); } catch (Exception e) { logger.error(e.getMessage(), e); } finally { if (conn != null) { connPool.returnConn(conn);