- Spring 5.0 Microservices(Second Edition)
- Rajesh R V
- 55字
- 2021-07-02 19:45:04
Subscription
A Subscription is shared by exactly one Publisher and one Subscriber for the purpose of mediating data exchange between this pair. Data exchange happens when the subscriber calls request. cancel is used basically to stop the subscription as seen in this example:
public interface Subscription {
public void request(long n);
public void cancel();
}
推薦閱讀
- Node.js+Webpack開發實戰
- Java 9 Concurrency Cookbook(Second Edition)
- MATLAB 2020 從入門到精通
- Data Analysis with Stata
- 程序是怎樣跑起來的(第3版)
- Hands-On Full Stack Development with Go
- PySpark Cookbook
- Protocol-Oriented Programming with Swift
- Spring Boot實戰
- Julia數據科學應用
- Apache Solr PHP Integration
- Building UIs with Wijmo
- 美麗洞察力:從化妝品行業看顧客需求洞察
- Learning jqPlot
- Python GUI設計tkinter菜鳥編程(增強版)