领先一步
VMware 提供培训和认证,以加速您的进步。
了解更多更新:Kotlin 现在由reactor-core
和reactor-test
原生支持,无需任何额外的扩展。
我很高兴地宣布发布Reactor Kotlin 扩展的首个里程碑版本,它为 Reactor API 提供了 Kotlin 扩展。
它支持 Kotlin 类型,如KClass
,利用了 Kotlin 的具现化类型参数,并提供各种扩展以允许更具表达力的代码。您可以在下面看到使用 Java 的 Reactor 与使用 Kotlin + 扩展的 Reactor 的快速对比。
Java | 带扩展的 Kotlin |
---|---|
Mono.just("foo") |
"foo".toMono() |
Flux.fromIterable(list) |
list.toFlux() |
Mono.error(new RuntimeException()) |
RuntimeException().toMono() |
Flux.error(new RuntimeException()) |
RuntimeException().toFlux() |
flux.ofType(Foo.class) |
flux.ofType<Foo>() 或 flux.ofType(Foo::class) |
StepVerifier.create(flux).verifyComplete() |
flux.test().verifyComplete() |
要在您的项目中使用它,请添加https://repo.spring.io/milestone
存储库和io.projectreactor:reactor-kotlin-extensions:1.0.0.M1
依赖项。
这是第一个里程碑版本,因此请随时在reactor-kotlin-extensions GitHub 项目上创建问题并提交拉取请求。