super.init(config);
}
private static CometContext createCometContext(String id) {
CometEngine cometEngine = CometEngine.getEngine();
CometContext ctx = cometEngine.register(id);
ctx.setExpirationDelay(45 * 1000);
ctx.setBlockingNotification(false);
return ctx;
}