You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ieventsource.php 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * @author Morris Jobke <hey@morrisjobke.de>
  4. * @author Robin Appelman <icewind@owncloud.com>
  5. *
  6. * @copyright Copyright (c) 2016, ownCloud, Inc.
  7. * @license AGPL-3.0
  8. *
  9. * This code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License, version 3,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License, version 3,
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>
  20. *
  21. */
  22. namespace OCP;
  23. /**
  24. * wrapper for server side events (http://en.wikipedia.org/wiki/Server-sent_events)
  25. * includes a fallback for older browsers and IE
  26. *
  27. * use server side events with caution, to many open requests can hang the server
  28. *
  29. * The event source will initialize the connection to the client when the first data is sent
  30. * @since 8.0.0
  31. */
  32. interface IEventSource {
  33. /**
  34. * send a message to the client
  35. *
  36. * @param string $type
  37. * @param mixed $data
  38. *
  39. * if only one parameter is given, a typeless message will be send with that parameter as data
  40. * @since 8.0.0
  41. */
  42. public function send($type, $data = null);
  43. /**
  44. * close the connection of the event source
  45. * @since 8.0.0
  46. */
  47. public function close();
  48. }