aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Async/Enum/ProcessExecutionTime.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Async/Enum/ProcessExecutionTime.php')
-rw-r--r--lib/public/Async/Enum/ProcessExecutionTime.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/public/Async/Enum/ProcessExecutionTime.php b/lib/public/Async/Enum/ProcessExecutionTime.php
new file mode 100644
index 00000000000..600bdce3c91
--- /dev/null
+++ b/lib/public/Async/Enum/ProcessExecutionTime.php
@@ -0,0 +1,17 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+namespace OCP\Async\Enum;
+
+enum ProcessExecutionTime: int {
+ case NOW = 0;
+ case ASAP = 1;
+ case LATER = 2;
+ case ON_REQUEST = 9;
+}