
Spring Boot WebFlux
文章平均质量分 91
WebFlux
ximeneschen
这个作者很懒,什么都没留下…
展开
-
Reactive Streams规范及常见库
一、什么是Reactive StreamsReactive Streams is an initiative to provide a standard for asynchronous stream processing with non-blocking back pressure. This encompasses efforts aimed at runtime environments (JVM and JavaScript) as well as network protocols.概括的转载 2021-11-10 12:14:29 · 675 阅读 · 0 评论 -
从JDK9的Flow接口说起
一、JDK9响应式编程Java是一个“古老”并且广泛应用的编程语言,但Java9中引入了一些新鲜有趣的特性。这篇文章主要介绍FlowAPI这个新特性,通过FlowAPI我们仅仅使用JDK就能够搭建响应式应用程序,而不需要其他额外的类库,如RxJava或Project Reactor。尽管如此,当你看到过接口文档后你就会明白到正如字面所说,这只是一个API而已。她仅仅包含了一些Interface和一个实现类:1.Interface Flow.Publisher<T>定义了生产数据和控制事件的原创 2021-11-10 02:20:26 · 2704 阅读 · 0 评论