diff options
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/ieventsource.php | 2 | ||||
-rw-r--r-- | lib/public/iservercontainer.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/public/ieventsource.php b/lib/public/ieventsource.php index ea4bfc73d42..eb7853c5e90 100644 --- a/lib/public/ieventsource.php +++ b/lib/public/ieventsource.php @@ -13,6 +13,8 @@ namespace OCP; * includes a fallback for older browsers and IE * * use server side events with caution, to many open requests can hang the server + * + * The event source will initialize the connection to the client when the first data is sent */ interface IEventSource { /** diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 24d8894d9fe..1abf0d9938d 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -237,9 +237,9 @@ interface IServerContainer { function getCertificateManager($user = null); /** - * Returns a search instance + * Create a new event source * * @return \OCP\IEventSource */ - function getEventSource(); + function createEventSource(); } |