zhengxiaopeng / Rocko-Android-Demos

Rocko Android demos -
https://rocko.xyz
Apache License 2.0
368 stars 308 forks source link

UserCase抽象类的困惑 #1

Open autoool opened 8 years ago

autoool commented 8 years ago

关于Android-CleanArchitecture的domain层 关于UserCase 的困惑:根据这边文章 http://www.jianshu.com/p/f3f0eccbcd6f “不能打断其链式结构”,确实rxjava的链式结构真的是一大优势,但是UserCase的写法我觉得已经违背了链式结构,因为没有办法几个请求使用flapmap链式执行了。还希望能够给点建议。

zhengxiaopeng commented 8 years ago

从下到上的结构都是 Observable 数据在返回,你可以任意操作由下返回的 Observable 流。

linarykai commented 6 years ago

项目跑不了