#2355 - Fixing issue with takeUntil and friends on EOF plus generalizing repeat

This commit is contained in:
Viktor Klang 2012-08-13 13:43:06 +02:00
parent e1a6e23d7f
commit 4f20f10884
3 changed files with 143 additions and 120 deletions

View file

@ -30,7 +30,7 @@ class HttpServer(port: Int) extends Actor {
state(socket)(IO Chunk bytes)
case IO.Closed(socket, cause)
state(socket)(IO EOF None)
state(socket)(IO EOF)
state -= socket
}