mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-21 22:02:06 +01:00
[muc] Add MultiUserChat.destroy()
This commit is contained in:
parent
c95c8264da
commit
64c82ca0cf
1 changed files with 17 additions and 0 deletions
|
@ -923,6 +923,23 @@ public class MultiUserChat {
|
|||
connection.createStanzaCollectorAndSend(reg).nextResultOrThrow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends a request to destroy the room.
|
||||
*
|
||||
* @throws XMPPErrorException if an error occurs while trying to destroy the room.
|
||||
* An error can occur which will be wrapped by an XMPPException --
|
||||
* XMPP error code 403. The error code can be used to present more
|
||||
* appropriate error messages to end-users.
|
||||
* @throws NoResponseException if there was no response from the server.
|
||||
* @throws NotConnectedException if the XMPP connection is not connected.
|
||||
* @throws InterruptedException if the calling thread was interrupted.
|
||||
* @see #destroy(String, EntityBareJid)
|
||||
* @since 4.5
|
||||
*/
|
||||
public void destroy() throws NoResponseException, XMPPErrorException, NotConnectedException, InterruptedException {
|
||||
destroy(null, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends a request to the server to destroy the room. The sender of the request
|
||||
* should be the room's owner. If the sender of the destroy request is not the room's owner
|
||||
|
|
Loading…
Reference in a new issue