Shortcut | Equivalent |
---|---|
uni.map(x -> y) | uni.onItem().transform(x -> y) |
uni.flatMap(x -> uni2) | uni.onItem().transformToUni(x -> uni2) |
uni.chain(x -> uni2) | uni.onItem().transformToUni(x -> uni2) |
uni.then(() -> uni2) | uni.onItem().transformToUni(ignored -> uni2) |
uni.invoke(x -> System.out.println(x)) | uni.onItem().invoke(x -> System.out.println(x)) |
uni.call(x -> uni2) | uni.onItem().call(x -> uni2) |
uni.eventually(() -> System.out.println("eventually")) | uni.onItemOrFailure().invoke((ignoredItem, ignoredException) -> System.out.println("eventually")) |
uni.eventually(() -> uni2) | uni.onItemOrFailure().call((ignoredItem, ignoredException) -> uni2) |
-
Notifications
You must be signed in to change notification settings - Fork 0
pricelessjunk/MutinyExamples
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published