Caoyuan Deng

Results 43 comments of Caoyuan Deng

There may be no 0.1.2 release, we're refactorying to an 0.1.3, which is in progressing.

0.1.3 and previous works are all compatible with socketio.io 0.9.* For 0.1.3, it's being developed with a real project in Wandou labs, so the cut date should be same as...

Here's an example: ``` scala override def sessionIdGenerator: HttpRequest => Future[String] = { req => val sid = req.uri.query.get("sessionid") match { case Some(sessionId) => sessionId case None => UUID.randomUUID.toString }...