1
0

IEvent.php 659 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCP\Diagnostics;
  8. /**
  9. * Interface IEvent
  10. *
  11. * @since 8.0.0
  12. */
  13. interface IEvent {
  14. /**
  15. * @return string
  16. * @since 8.0.0
  17. */
  18. public function getId();
  19. /**
  20. * @return string
  21. * @since 8.0.0
  22. */
  23. public function getDescription();
  24. /**
  25. * @return float
  26. * @since 8.0.0
  27. */
  28. public function getStart();
  29. /**
  30. * @return float
  31. * @since 8.0.0
  32. */
  33. public function getEnd();
  34. /**
  35. * @return float
  36. * @since 8.0.0
  37. */
  38. public function getDuration();
  39. }