Skip to content

Instantly share code, notes, and snippets.

@sirius2k
Last active April 21, 2019 12:54
Show Gist options
  • Save sirius2k/240fd6383f4089d61220bff79585cbc6 to your computer and use it in GitHub Desktop.
Save sirius2k/240fd6383f4089d61220bff79585cbc6 to your computer and use it in GitHub Desktop.
Kotlin Mono Example
val accountMono : Mono<Account> = Mono.just(Account(1, "admin"))
val accountMono : Mono<Account> = Account(1, "Admin").toMono()
// Type Inference
val accountMono = Account(1, "Admin").toMono()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment