KerioApiSocketInterface.php 830 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Api;
  3. /**
  4. * This file is part of the kerio-api-php.
  5. *
  6. * Copyright (c) Kerio Technologies s.r.o.
  7. *
  8. * For the full copyright and license information, please view
  9. * the file license.txt that was distributed with this source code
  10. * or visit Developer Zone. (http://www.kerio.com/developers)
  11. *
  12. * Do not modify this source code.
  13. * Any changes may be overwritten by a new version.
  14. */
  15. /**
  16. * Kerio API Socket Interface.
  17. *
  18. * This interface describes basic methods used in HTTP communication.
  19. *
  20. * @copyright Copyright &copy; 2012-2012 Kerio Technologies s.r.o.
  21. * @license http://www.kerio.com/developers/license/sdk-agreement
  22. * @version 1.4.0.234
  23. */
  24. interface KerioApiSocketInterface {
  25. /**
  26. * Send data to socket.
  27. *
  28. * @param string
  29. */
  30. public function send($data);
  31. }