MCPcopy Create free account
hub / github.com/xmlet/HtmlFlow / AsyncModel

Class AsyncModel

htmlflow-kotlin/src/test/java/htmlflow/test/model/AsyncModel.java:5–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import org.reactivestreams.Publisher;
4
5public 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}

Calls

no outgoing calls