matrix_sdk_base/response_processors/room/
mod.rs

1// Copyright 2025 The Matrix.org Foundation C.I.C.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use ruma::RoomId;
16use tokio::sync::broadcast::Sender;
17
18use crate::{store::ambiguity_map::AmbiguityCache, RequestedRequiredStates, RoomInfoNotableUpdate};
19
20pub mod display_name;
21pub mod msc4186;
22pub mod sync_v2;
23
24/// A classical set of data used by some processors in this module.
25pub struct RoomCreationData<'a> {
26    room_id: &'a RoomId,
27    room_info_notable_update_sender: Sender<RoomInfoNotableUpdate>,
28    requested_required_states: &'a RequestedRequiredStates,
29    ambiguity_cache: &'a mut AmbiguityCache,
30}
31
32impl<'a> RoomCreationData<'a> {
33    pub fn new(
34        room_id: &'a RoomId,
35        room_info_notable_update_sender: Sender<RoomInfoNotableUpdate>,
36        requested_required_states: &'a RequestedRequiredStates,
37        ambiguity_cache: &'a mut AmbiguityCache,
38    ) -> Self {
39        Self {
40            room_id,
41            room_info_notable_update_sender,
42            requested_required_states,
43            ambiguity_cache,
44        }
45    }
46}