- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望我的 NewsListSubscriber 继承自使用通用类型的 RxJava 订阅者,但在调用 UseCase 执行方法时出现“类型不匹配”错误。我多次阅读 Kotlin 文档中的泛型页面,但找不到解决方案。
这是我的用例:
abstract class UseCase(private val threadExecutor: IThreadExecutor,
private val postExecutionThread: IPostExecutionThread) {
private var subscription = Subscriptions.empty()
fun execute(UseCaseSubscriber: rx.Subscriber<Any>) {
subscription = buildUseCaseObservable()
.subscribeOn(Schedulers.from(threadExecutor))
.observeOn(postExecutionThread.getScheduler())
.subscribe(UseCaseSubscriber)
}
protected abstract fun buildUseCaseObservable(): Observable<out Any>
fun unsubscribe() {
if (!subscription.isUnsubscribed) {
subscription.unsubscribe()
}
}
}
我是这样调用它的:
override fun loadNewsList() {
getNewsListInteractor.execute(NewsListSubscriber())
}
private inner class NewsListSubscriber : rx.Subscriber<List<NewsModel>>() {
override fun onCompleted() {// TODO}
override fun onError(e: Throwable) {// TODO}
override fun onNext(t: List<NewsModel>) {// TODO}
}
错误是
"Type mismatch. Required: rx.Subscriber. Found: Presenters.NewsListPresenter.NewsListSubscriber"
在“执行(NewsListSubscriber())”行中。我尝试使用“in”和“out”关键字,但我仍然遇到同样的错误。
最佳答案
其实有更好的方法来解决这个问题。我遇到了同样的问题,并且在每个派生订阅者类中进行类型转换不是一种选择。
只需使用通用类型参数更新抽象 UseCase 类即可。
abstract class UseCase<T>(private val threadExecutor: IThreadExecutor,
private val postExecutionThread: IPostExecutionThread) {
private var subscription = Subscriptions.empty()
fun execute(UseCaseSubscriber: rx.Subscriber<T>) {
subscription = buildUseCaseObservable()
.subscribeOn(Schedulers.from(threadExecutor))
.observeOn(postExecutionThread.getScheduler())
.subscribe(UseCaseSubscriber)
}
protected abstract fun buildUseCaseObservable(): Observable<T>
fun unsubscribe() {
if (!subscription.isUnsubscribed) {
subscription.unsubscribe()
}
}
}
当您声明您的派生用例类时,在调用父类(super class)时使用您的具体类型作为泛型参数。
class ConcreteUseCase(val threadExecutor: IThreadExecutor,
val postExecutionThread: IPostExecutionThread)
: UseCase<ConcreteType>(threadExecutor, postExecutionThread)
这样,您就可以在execute
调用中使用类型化订阅者。
getNewsListInteractor.execute(NewsListSubscriber())
...
private inner class NewsListSubscriber : rx.Subscriber<List<NewsModel() {
override fun onCompleted() {// TODO}
override fun onError(e: Throwable) {// TODO}
override fun onNext(t: List<NewsModel>) {// TODO}
}
关于android - Kotlin:如何继承RxJava Subscriber,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35661625/
我正在使用 Swift Joint,但不明白两者之间的区别 func subscribe(_ subscriber: S) where S : Subscriber, Self.Failure ==
大多数 Flowable.subscribe() 重载返回一个 Disposable ,它可以清理流。我习惯于这样做: Disposable d = Flowable.just() .map(
我正在尝试测试主题 symbol$ 的输出存在于我的组件上。 具体来说,当组件属性 symbol 时,主题符号 $ 应该发出(这是正确的词吗?)已经改变。 但是,我找不到测试输出到 symbol$ 的
Observable.just(10,20,30,40,50) .subscribe { Consumer{ Log.d(TAG, "Where
我在 subscribe 中有带有 subscribe 的代码: this.http.post('/update1', newData).subscribe( (response) => {
我有两个页面/模板, 仪表板(还包含一些用户特定数据)。 用户。 我正在使用带有 Blaze 模板的 Meteor 1.5。登陆页面是仪表板。我在两个模板中都使用集合 Users 的通用订阅。 场景
我刚接触 Angular2 一周! 基本上有 2 个 API 调用。 第一个 API 调用为我提供了一个 json 对象数组 (queryResults)。 (第一次订阅) 在 View 中显示该数组
我已经在 stackoverflow 上尝试了很多关于修复此错误的提议,但现在我只需要问一下,因为我已经花了很多时间,现在一无所获。 我有这个简单的服务: constructor(private ht
给定一个配置有任务执行器的发布-订阅 channel ,如果抛出异常,是否可以中断其有序订阅者的调用? 例如,在此示例中,“已工作”消息仍然由序列中的第二个服务激活器发送。我希望这种事不要发生。
我正在尝试使用 Intent to PDF 应用程序下载和发送 pdf 以显示此处显示的文件 answer of JDenais这是下载 pdf 并通过 Intent 传递它的代码。 public c
我目前正在调查 RxJS's .merge但是我也会在这里问这个问题,因为我发现这里的解释有时非常精彩。 好的,我有一个根据用户输入打开模态窗口的表单,我订阅模态关闭事件并传回一些我将在调用/订阅服务
我刚刚对我的 Angular 6 应用程序进行了 ng 升级,现在我得到: ERROR in node_modules/@angular/flex-layout/core/typings/observ
如果您有一个事件驱动的架构并且订阅事件的服务在继续创建链中的下一个事件之前必须等待多个事件(相同类型),那么最佳实践是什么? 一个例子是图书订单处理服务,它必须等待订单中的每一本书都被仓库处理,然后再
我使用下面的代码进行异步调用,我想知道在 getData() 函数中生成的 data 的值,但是,我得到 undefined 因为调用还没有解决。有什么办法可以解决吗? getData(address
我在订阅我的 HTML 页面中的下拉值更改时遇到实现 knockout Js 的问题。这是我的 HTML Request Types :
函数定义 resetComponent(){ console.log("1st"); ... this.background = { }; this.uploadMode = fals
在我的代码中,我正在使用 @Subscribe 注释来监听事件: @Subscribe public void orderUpdate(OrderUpdateEvent event) 我的问题是,对于
我正在使用 Angular2 和 NodeJS 编写 API,我正在为我的 ِAPI 实现服务,该 API 应该获取任务列表并显示它。这是任务服务: import {Injectable} from
我正在尝试使用来自服务器的 json 响应创建动态菜单,但出现此错误: MenuComponent.html:4 ERROR TypeError: Cannot read property 'subs
我查看了许多资源,包括 this , this和 this ,但我一直无法达到预期的效果。 我要做的就是验证用户(使用 firebase),然后在验证后加载他们的配置文件并将其存储在变量 userPr
我是一名优秀的程序员,十分优秀!