以下是使用scala.rx中的Timer的示例:
package tutorial.webapp
import akka.actor.ActorSystem
import rx.core.{Rx, Var}
import rx._
import rx.ops._
import scala.concurrent.Promise
import scala.concurrent.duration._
import scala.scalajs.js.JSApp
import scala.scalajs.js.annotation.JSExport
import scala.concurrent.ExecutionContext.Implicits.global
/**
* Created by IDEA on 29/10/15.
*/
object RxAddtionalOps extends JSApp {
@JSExport
override def main(): Unit = {
timer1
}
def timer1: Unit = {
implicit val scheduler = new DomScheduler
val t = Timer(100 millis)
var count = 0
val o = Obs(t){
count = count + 1
println(count)
}
}
}
从sbt运行runMain tutorial.webapp.RxAddtionalOps
时,控制台将被无限期阻止。我可以设置定时器的限制吗?例如,使其在2分钟内停止发射事件。
答案 0 :(得分:1)
首先,Scala是一种用简洁,优雅和类型安全的方式表达常见编程模式的语言。所以保持你的工作整洁! 因此
import akka.actor.ActorSystem
import rx.core.{Rx, Var}
import rx._
import scala.concurrent.Promise
是很多不必要的噪音。如果目标是一个JavaScript平台,则Actor系统尚未可用,可能需要几年时间。
为什么要在sbt中触发runMain tutorial.webapp.RxAddtionalOps
,而简单的run
命令会这样做?
我使用Timer.kill()方法在一段有限的时间后终止执行:
package tutorial.webapp
import rx.Obs
import rx.ops.{DomScheduler, Timer}
import scala.concurrent.ExecutionContext.Implicits.global
import scala.concurrent.duration._
import scala.language.postfixOps
import scala.scalajs.js.JSApp
object RxAddtionalOps extends JSApp {
val executionStart = scala.compat.Platform.currentTime
def main(): Unit = {
timer1()
}
def timer1() = {
implicit val scheduler = new DomScheduler
val t = Timer(100 millis)
var count = 0
Obs(t) {
count += 1
println(count)
if (count >= 19) {
t.kill()
println(s"Successfully completed without errors. [within ${
scala.compat.Platform.currentTime - executionStart
} ms]")
}
}
}
}
由于它实际上是无头幻像或犀牛环境(取决于你的build.sbt配置),因此不能处理用户启动的中断。
为了完整性,这里是build.sbt文件:
name := "RxAddtionalOps"
version := "1.0"
scalaVersion := "2.11.7"
enablePlugins(ScalaJSPlugin)
scalacOptions ++= Seq("-unchecked", "-deprecation","-feature")
libraryDependencies ++= Seq(
"com.lihaoyi" %%% "scalarx" % "0.2.8",
"org.scala-js" %% "scalajs-library" % "0.6.5"
)