aboutsummaryrefslogtreecommitdiff
path: root/internal/caching/cache_space_rooms.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/caching/cache_space_rooms.go')
-rw-r--r--internal/caching/cache_space_rooms.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/internal/caching/cache_space_rooms.go b/internal/caching/cache_space_rooms.go
index 100ab902..90eeb786 100644
--- a/internal/caching/cache_space_rooms.go
+++ b/internal/caching/cache_space_rooms.go
@@ -2,15 +2,16 @@ package caching
import "github.com/matrix-org/gomatrixserverlib/fclient"
-type SpaceSummaryRoomsCache interface {
- GetSpaceSummary(roomID string) (r fclient.MSC2946SpacesResponse, ok bool)
- StoreSpaceSummary(roomID string, r fclient.MSC2946SpacesResponse)
+// RoomHierarchy cache caches responses to federated room hierarchy requests (A.K.A. 'space summaries')
+type RoomHierarchyCache interface {
+ GetRoomHierarchy(roomID string) (r fclient.RoomHierarchyResponse, ok bool)
+ StoreRoomHierarchy(roomID string, r fclient.RoomHierarchyResponse)
}
-func (c Caches) GetSpaceSummary(roomID string) (r fclient.MSC2946SpacesResponse, ok bool) {
- return c.SpaceSummaryRooms.Get(roomID)
+func (c Caches) GetRoomHierarchy(roomID string) (r fclient.RoomHierarchyResponse, ok bool) {
+ return c.RoomHierarchies.Get(roomID)
}
-func (c Caches) StoreSpaceSummary(roomID string, r fclient.MSC2946SpacesResponse) {
- c.SpaceSummaryRooms.Set(roomID, r)
+func (c Caches) StoreRoomHierarchy(roomID string, r fclient.RoomHierarchyResponse) {
+ c.RoomHierarchies.Set(roomID, r)
}