[All] Provide Java equivalents of Kotlin coroutines/Flows #9
Labels
affects:java
Affects pure Java projects
api request
Request for a new API
design
API design
enhancement
New feature or request
See #8
API suggestions
(Suggestions are tentative as of now)
For single-value
suspend
functionsWe could expose methods that return one of the following:
CompletableFuture
CoroutineScope#future
ListenableFuture
CoroutineScope#future
Single
rxSingle
Single
rxSingle
For methods that return a
Flow
We could expose methods that return one of the following:
Flow.Publisher
Flow.asPublisher
Flowable
Flow.asFlowable
Flowable
Flow.asFlowable
The text was updated successfully, but these errors were encountered: