首页 > Java > java教程 > 正文

Java 9中的Reactive Streams的核心接口是什么?

WBOY
发布: 2023-08-27 20:37:02
转载
1264 人浏览过

Java 9中的Reactive Streams的核心接口是什么?

Java 9 在 java.util.concurrent.Flow 包下引入了响应式流,支持可互操作的发布-订阅 框架。它跨越异步边界处理异步数据流(将元素传递到另一个线程或线程池),并且接收方不会被迫缓冲任意数量的数据,因此不会发生缓冲区溢出。

Flow API包含四个相互关联的核心接口:发布者订阅者订阅和处理器。

语法

<strong>@FunctionalInterface
</strong>public static interface <strong>Publisher<T></strong> {
   public void <strong>subscribe</strong>(<strong>Subscriber</strong><? super T><!--? super T--> subscriber)
}
public static interface <strong>Subscriber<T></strong> {
   public void <strong>onSubscribe</strong>(Subscription subscription);
   public void <strong>onNext</strong>(T item);
   public void <strong>onError</strong>(Throwable throwable);
   public void <strong>onComplete</strong>();
}
public static interface <strong>Subscription </strong>{
   public void <strong>request</strong>(long n);
   public void <strong>cancel</strong>();
}
public static interface <strong>Processor<T, R> </strong>extends <strong>Subscriber<T></strong>, <strong>Publisher<R></strong> {
}
登录后复制

这四个接口:Flow.PublisherFlow.Processor、Flow.Subscriber Flow 。与反应流规范相关的订阅。 发布者接口有subscribe()方法,订阅cancel()request() 方法,订阅者onSubscribe()onNext()onError() >onComplete() 方法。 处理器接口实现Flow的所有方法。发布者Flow.Subscriber 接口。

以上是Java 9中的Reactive Streams的核心接口是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板