Skip to content

Commit 4701d94

Browse files
authored
synchronous-vs-asynchronous/README.md - typo
1 parent 55a5854 commit 4701d94

File tree

1 file changed

+1
-1
lines changed
  • src/language-tools-and-standard-library/architectural-patterns/synchronous-vs-asynchronous

1 file changed

+1
-1
lines changed

src/language-tools-and-standard-library/architectural-patterns/synchronous-vs-asynchronous/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Input and output primitives allows for the programming of both synchronous and a
44

55
![](../../../assets/image/asyncvssync.png)
66

7-
It is worth noting that both of them have always an impact on the architecture of the system. The synchrOnous communication permits to have a double message exchange on the port of the receiver whereas the asynchronous one deals only with a single message exchange. Thus, if we need to implement an asynchronous request/reply message exchange we are forced to modify the architecture adding an input port to the sender and an output port to the receiver just for dealing with the reply message.
7+
It is worth noting that both of them have always an impact on the architecture of the system. The synchronous communication permits to have a double message exchange on the port of the receiver whereas the asynchronous one deals only with a single message exchange. Thus, if we need to implement an asynchronous request/reply message exchange we are forced to modify the architecture adding an input port to the sender and an output port to the receiver just for dealing with the reply message.
88

99
![](../../../assets/image/async.png)
1010

0 commit comments

Comments
 (0)