KerioApiSocketInterface.php 787 B

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