作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道热和冷 observables 之间的区别是 previously discussed on Stack Overflow在 C# 的上下文中,但是我根本不了解 C#,也不了解 Lee Campbell 所指的代码示例。
我在 Scala 工作,使用 RXScala 库。什么是 Scala 中的热和冷 observables,它们是如何使用 RXScala 实现的?
最佳答案
冷观测
冷 observables 是在订阅时开始产生值的 observables。
被动并根据请求开始发布的流。
一些例子:
import rx.lang.scala._
import org.joda.time._
val onetwothree = Observable.just(1, 2, 3) // when subscribed each subscriber will get 1, 2, and 3
// scala> onetwothree.subscribe(println(_))
// 1
// 2
// 3
// res1: rx.lang.scala.Subscription = rx.lang.scala.Subscription$$anon$2@11be372a
// When subscribed will get one event with current DateTime
val currentTime = Observable.defer {
Observable.just(DateTime.now)
}
// scala> currentTime.subscribe(println(_))
// 2015-01-19T14:13:37.333+02:00
// scala> currentTime.subscribe(println(_))
// 2015-01-19T14:13:38.742+02:00
// scala> currentTime.subscribe(println(_))
// 2015-01-19T14:13:40.448+02:00
// And this one is tricky.
val loggedInUsers = Obserable.defer {
fetchLoggedUsersFromDb
}
loggedInUsers
被制作成一种可以称为暖可观察的东西:
val loggedInUsers = updateTriggers.concatMap { _ =>
fetchLoggedUsersFromDb
}.replay(1)
updateTriggers
时,此流的订阅者将立即获得一个值,即已登录的用户。上次触发了。还有连续更新。
val hot = mouseClicks
// Observable that will replay all of its items and notifications to any future Observer
// i.e. all mouseClicks from the time point we called `.replay`
val cold = hot.replay
// Observable that will replay at most 10 items emitted by `hot`
val warm = hot.replay(10)
warm
它将立即发出最后 10 次点击,并在此后继续发出点击。
关于scala - RXScala 中的热和冷 observables 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28021313/
我是一名优秀的程序员,十分优秀!