我正在研究Scala.React和更新后的paper on the issue,尝试使用基于Signal
的简单示例。
我理解本文中的Signal
方法不存在,而是Strict
和Lazy
。所以我天真的第一次尝试:
设置整个事物:
object dom extends scala.react.Domain {
val engine = new Engine
val scheduler = new ManualScheduler
}
import dom._
尝试合成:
val v1, v2 = Var(0)
val f = Strict { v1() + v2() }
第二行与
崩溃java.lang.AssertionError: assertion failed: This method must be run on its domain
scala.react.NilDebug@4eaf6cb1
at scala.Predef$.assert(Predef.scala:179)
at scala.react.Debug.assertInTurn(Debug.scala:37)
at scala.react.EngineModule$Propagator.defer(EngineModule.scala:120)
...
所以我一定做错了。但是什么?
第二次尝试:
scala> dom.start()
scala> var v1, v2, f = (null: Signal[Int])
v1: dom.Signal[Int] = null
v2: dom.Signal[Int] = null
f: dom.Signal[Int] = null
scala> schedule { v1 = Var(0); v2 = Var(0) }
scala> schedule { f = Strict { v1() + v2() }}
scala> engine.runTurn()
scala> schedule { println(f.now) }
scala> engine.runTurn()
Uncaught exception in turn!
scala.react.EngineModule$LevelMismatch$
答案 0 :(得分:1)
好的,首先,如果我们想要保留对这些信号的引用,我们应该使用Lazy
而不是Strict
,因为Strict
需要在预定的转弯中运行。
以下是我的新尝试。不确定这是不是这样,但它确实有效:
object Test extends scala.react.Domain with App {
val engine = new Engine
val scheduler = new ManualScheduler
val v2 = Var(0)
val v1 = Lazy { v2() + 10 }
val f = Lazy { v1() + v2() }
start()
schedule {
new Observing {
observe(f) { p =>
println(s"Observed: $p")
}
}
v2() = 5
}
runTurn()
}