All room state is currently shared.

This commit is contained in:
Erik Johnston 2014-10-02 14:25:47 +01:00
parent 2d55d43d40
commit b2d41b1cd9

View file

@ -167,7 +167,7 @@ The following diagram shows an ``m.room.message`` event being sent in the room
| matrix.org |<-------Federation------->| domain.com | | matrix.org |<-------Federation------->| domain.com |
+------------------+ +------------------+ +------------------+ +------------------+
| ................................. | | ................................. |
|______| Partially Shared State |_______| |______| Shared State |_______|
| Room ID: !qporfwt:matrix.org | | Room ID: !qporfwt:matrix.org |
| Servers: matrix.org, domain.com | | Servers: matrix.org, domain.com |
| Members: | | Members: |
@ -177,11 +177,10 @@ The following diagram shows an ``m.room.message`` event being sent in the room
Federation maintains shared state between multiple home servers, such that when Federation maintains shared state between multiple home servers, such that when
an event is sent to a room, the home server knows where to forward the event on an event is sent to a room, the home server knows where to forward the event on
to, and how to process the event. Home servers do not need to have completely to, and how to process the event. State is scoped to a single room, and
shared state in order to participate in a room. State is scoped to a single federation ensures that all home servers have the information they need, even
room, and federation ensures that all home servers have the information they if that means the home server has to request more information from another home
need, even if that means the home server has to request more information from server before processing the event.
another home server before processing the event.
Room Aliases Room Aliases
------------ ------------