| 3 | import org.reactivestreams.Publisher; |
| 4 | |
| 5 | public class AsyncModel<T,R> { |
| 6 | |
| 7 | public final Publisher<T> titles; |
| 8 | public final Publisher<R> items; |
| 9 | |
| 10 | public AsyncModel(Publisher<T> titles, Publisher<R> items) { |
| 11 | this.titles = titles; |
| 12 | this.items = items; |
| 13 | } |
| 14 | } |
no outgoing calls