``` interface FooManager { val allFooObservable...
# rx
u
Copy code
interface FooManager {
   val allFooObservable: Observable<Foo>
   fun fooByIdObservable(id: Long): Observable<Foo>
}
rubs me the wrong way