raulraja
IO.async() .async { callback: (Either<Throwable, Int>) -> Unit -> userFromDatabaseObservable().subscribe({ user: User -> callback(user.left()) }, { error: Exception -> callback(error.right()) }) }
stepango
IO.async() .async { ... }
IO.async { ... }
A modern programming language that makes developers happier.