Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2018-06-18 19:15:50 +0300
committerGeorg Ehrke <developer@georgehrke.com>2018-06-25 05:59:01 +0300
commit8f061f5407a3c1c0286b08851ab6740b52a20964 (patch)
treed3ad852025f4a86fa212959bb565b81996e292aa /lib/public/Calendar/Room/IBackend.php
parent9aca92c441229619cfef5ee4dc68f71d819bc6e9 (diff)
periodically query calendar resource / room backends for updated resource / room information
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'lib/public/Calendar/Room/IBackend.php')
-rw-r--r--lib/public/Calendar/Room/IBackend.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/public/Calendar/Room/IBackend.php b/lib/public/Calendar/Room/IBackend.php
index 84e01f6e320..0d4c3ef678f 100644
--- a/lib/public/Calendar/Room/IBackend.php
+++ b/lib/public/Calendar/Room/IBackend.php
@@ -22,6 +22,7 @@
*/
namespace OCP\Calendar\Room;
+use OCP\Calendar\BackendTemporarilyUnavailableException;
/**
* Interface IBackend
@@ -34,6 +35,7 @@ interface IBackend {
/**
* get a list of all rooms in this backend
*
+ * @throws BackendTemporarilyUnavailableException
* @return IRoom[]
*/
public function getAllRooms():array;
@@ -41,6 +43,7 @@ interface IBackend {
/**
* get a list of all room identifiers in this backend
*
+ * @throws BackendTemporarilyUnavailableException
* @return string[]
*/
public function listAllRooms():array;
@@ -49,6 +52,7 @@ interface IBackend {
* get a room by it's id
*
* @param string $id
+ * @throws BackendTemporarilyUnavailableException
* @return IRoom|null
*/
public function getRoom($id);