为什么PushEnumerator会挂在这里?

时间:2012-10-29 01:34:53

标签: scala playframework playframework-2.0 iterate

在一个sbt play项目中,我运行console-project并粘贴此代码:

import play.api.libs.iteratee._

val e = Enumerator.imperative[String]()

e.push("foo")
e.push("bar")
e.push("bah")
e.close

val i: Iteratee[String, String] = Iteratee.consume[String]()

val applied = (e andThen Enumerator.eof) |>> i

Iteratee.flatten(applied).run.value.get

然而它会因超时而死亡。我在这里做错了吗?

0 个答案:

没有答案