Skip to content

Commit e778f20

Browse files
authored
Update internals.en.md
1 parent 712c2b4 commit e778f20

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/introduction/internals.en.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
## Resources
1+
## Concept
22

3-
WRP has resources that are isolated for each particular purpose like the OSI-7
4-
layer to provide a communication layer.
3+
WRP is a protocol for providing communication capabilities to the Protobuf service.
4+
Instead of designing a separate protocol for each platform, the protocol is abstracted into several concepts, and the implementation of concepts other than socket is designed to be shared by all platforms.
55

6-
Sockets and channels are used to implement message communication.
6+
Sockets and channels are used to one way message communication.
77

8-
- Socket: Transports binary data between the two platforms
8+
- Socket: Transports binary data between the two platforms.
99
- Channel: Transports data in form of message over the socket.
1010

1111
Guests and hosts are divided according to the purpose of using messages that are
@@ -14,7 +14,7 @@ transported over channels.
1414
- Guest: Sends requests over the channel.
1515
- Host: Processes requests from guests and sends responses.
1616

17-
Additionally, each platform (Web, iframe, iOS, Android) has a different form of
17+
Since each platform (Web, iframe, iOS, Android) has a different form of
1818
low-level API and different communication methods. So `Glue` exists for
1919
implementing the socket in platform-specific way.
2020

0 commit comments

Comments
 (0)