remove ilo run command file
[yosql.git] / yosql-website / content / sql / reactive.md
blob2b45c25f6d80002c224a08ea56d3e5e20a2aff88
1 ---
2 title: Reactive
3 date: 2019-07-07T14:27:54+02:00
4 menu:
5   main:
6     parent: SQL
7 categories:
8   - SQL
9 tags:
10   - rxjava
11   - reactor
12   - r2dbc
13 ---
15 `YoSQL` supports several reactive APIs like **rxJava** or **reactor**.
17 The `yosql-tooling-maven` plugin for Maven automatically enables reactive methods like the following in case a reactive API was detected as a dependency of the current project.
19 ```java
20 // lazily loads all rows in a stateful flow which closes automatically
21 Flowable<ResultRow> findUserFlow(Object userId)
22 ```