Skip to content

Instantly share code, notes, and snippets.

@dnno
Created November 15, 2023 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnno/7ee80e3ff047aee878ee7ee892b062ac to your computer and use it in GitHub Desktop.
Save dnno/7ee80e3ff047aee878ee7ee892b062ac to your computer and use it in GitHub Desktop.
Zipping Reactor Monos
Mono.zip(
userGateway.getUsers(),
ordersGateway.getOrders()
)
.map { (users, orders) ->
UsersAndOrder(users, orders)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment