File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,18 @@ The main goal of this project is to explore basic features of
16
16
* ** Processor** (** SubmissionPublisher** )
17
17
18
18
## definitions
19
- In ` Java 9 ` naming conventions :
20
- ** [ Flow.Publisher] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Publisher.html ) ** -
19
+ Conceptual map :
20
+ * * *[ Flow.Publisher] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Publisher.html ) ** -
21
21
source of data.
22
- ** [ Flow.Subscriber] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Subscriber.html ) ** -
22
+ * * *[ Flow.Subscriber] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Subscriber.html ) ** -
23
23
destination of data.
24
- ** [ Flow.Subscription] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Subscription.html ) ** -
24
+ * * *[ Flow.Subscription] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Subscription.html ) ** -
25
25
message control linking a ` Flow.Publisher ` and ` Flow.Subscriber `
26
26
(` Subscriber ` signal demand to ` Publisher ` ).
27
- ** [ Flow.Processor] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Processor.html ) ** -
27
+ * * *[ Flow.Processor] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.Processor.html ) ** -
28
28
a component that acts as both a ` Subscriber ` and ` Publisher ` (can
29
29
consume input and produce output).
30
- ** [ Flow.SubmissionPublisher] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/SubmissionPublisher.html ) ** -
30
+ * * *[ Flow.SubmissionPublisher] ( https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/SubmissionPublisher.html ) ** -
31
31
It's the only one implementation (in ` JDK ` ) of ` Flow.Publisher ` .
32
32
Moreover - has ability to asynchronously issue submitted (non-null)
33
33
items to current subscribers until it is closed.
You can’t perform that action at this time.
0 commit comments