2019-01-18 11:12:08 +01:00
|
|
|
/*
|
2019-01-25 14:04:59 +01:00
|
|
|
* Copyright 2019 New Vector Ltd
|
2019-01-18 11:12:08 +01:00
|
|
|
*
|
2019-01-25 14:04:59 +01:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2019-01-18 11:12:08 +01:00
|
|
|
*
|
2019-01-25 14:04:59 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2019-01-18 11:12:08 +01:00
|
|
|
*/
|
|
|
|
|
2018-10-17 18:21:09 +02:00
|
|
|
package im.vector.matrix.android.api.session.room
|
|
|
|
|
2019-01-16 19:25:43 +01:00
|
|
|
import androidx.lifecycle.LiveData
|
2019-01-31 20:40:32 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.members.RoomMembersService
|
2018-10-29 14:57:36 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.model.RoomSummary
|
2019-01-28 17:56:23 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.read.ReadService
|
2019-01-18 16:26:17 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.send.SendService
|
2019-01-07 19:38:36 +01:00
|
|
|
import im.vector.matrix.android.api.session.room.timeline.TimelineService
|
2018-10-19 14:26:13 +02:00
|
|
|
|
2019-01-18 16:26:17 +01:00
|
|
|
/**
|
|
|
|
* This interface defines methods to interact within a room.
|
|
|
|
*/
|
2019-01-31 20:40:32 +01:00
|
|
|
interface Room : TimelineService, SendService, ReadService, RoomMembersService {
|
2018-10-17 18:21:09 +02:00
|
|
|
|
2019-01-18 16:26:17 +01:00
|
|
|
/**
|
|
|
|
* The roomId of this room
|
|
|
|
*/
|
2018-10-17 18:21:09 +02:00
|
|
|
val roomId: String
|
|
|
|
|
2019-01-18 16:26:17 +01:00
|
|
|
/**
|
|
|
|
* A live [RoomSummary] associated with the room
|
2019-01-29 14:16:22 +01:00
|
|
|
* You can observe this summary to get dynamic data from this room.
|
2019-01-18 16:26:17 +01:00
|
|
|
*/
|
2018-10-29 14:57:36 +01:00
|
|
|
val roomSummary: LiveData<RoomSummary>
|
2018-10-23 18:25:28 +02:00
|
|
|
|
2019-02-01 12:38:33 +01:00
|
|
|
/**
|
|
|
|
* Add a listener to the room.
|
|
|
|
* @param listener the listener to add.
|
|
|
|
*/
|
|
|
|
fun addListener(listener: Listener)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a listener from the room.
|
|
|
|
* @param listener the listener to remove.
|
|
|
|
*/
|
|
|
|
fun removeListener(listener: Listener)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A listener defined at the room level to listen for some events from the different room services.
|
|
|
|
*/
|
|
|
|
interface Listener : ReadService.Listener {
|
|
|
|
|
|
|
|
override fun onReadReceiptsUpdated() {
|
|
|
|
// no-op
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-17 18:21:09 +02:00
|
|
|
}
|