Unknown opened 4 years ago
|
|
Implementation of |
|
All what implementation of Also, another class extending |
|
That makes sense. Closing this. Thank you |
|
@hantu85 quick clarification, if I understand correctly, tigase-swift doesn't have the ability to create the room by sending raw XML commands to XMPP server. It seems I need to implement the logic that will talk to my XMPP server to actually create the room. Why is that I can see code for deleting the room
But I don't see one which instructs the XMPP server to create one (I think the user needs to implement it too). Is my understanding correct? |
|
Room creation is identical to joining the room and most of the servers will create a room which you want to join if it does not exist. If there room was created then you should receive a status code in the response marking that this is a new room. That is why there is no point in having a code to create a room. |
I'm trying to use
MucModule
as per the documentation. However, it seems the current version now needs aDefaultRoomsManager
and that also needs an implementation forRoomStore
protocolNeed help on how to properly register MucModule. Also, isn't tigase-swift should implement the
RoomStore
instead by the user?