MetadataBackgroundEvent.php 613 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\FilesMetadata\Event;
  8. use OCP\FilesMetadata\AMetadataEvent;
  9. /**
  10. * MetadataBackgroundEvent is an event similar to MetadataLiveEvent but dispatched
  11. * on a background thread instead of live thread. Meaning there is no limit to
  12. * the time required for the generation of your metadata.
  13. *
  14. * @see AMetadataEvent::getMetadata()
  15. * @see AMetadataEvent::getNode()
  16. * @since 28.0.0
  17. */
  18. class MetadataBackgroundEvent extends AMetadataEvent {
  19. }