search

Home  >  Q&A  >  body text

ios - rxswift中never有什么作用?

    func signup(_ username: String, password: String) -> Observable<Bool> {
        // this is also just a mock
        let signupResult = arc4random() % 5 == 0 ? false : true
        return Observable.just(signupResult)
            .concat(Observable.never())
            .throttle(0.4, scheduler: MainScheduler.instance)
            .take(1)
    }

我在RxSwift的示例中看到如上一段代码,想知道为什么just之后还需要concat一个never的信号,有什么妙用吗?

天蓬老师天蓬老师2771 days ago641

reply all(0)I'll reply

No reply
  • Cancelreply