ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilBackgroundTasksSetupConfig.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
use
ILIAS\Setup
;
6
use
ILIAS\Data\Password
;
7
8
class
ilBackgroundTasksSetupConfig
implements
Setup\Config
9
{
10
const
TYPE_SYNCHRONOUS
=
"sync"
;
11
const
TYPE_ASYNCHRONOUS
=
"async"
;
12
16
protected
$type
;
17
21
protected
$max_concurrent_tasks
;
22
23
public
function
__construct
(
24
string
$type
,
25
int
$max_concurrent_tasks
26
) {
27
$types = [
28
self::TYPE_SYNCHRONOUS,
29
self::TYPE_ASYNCHRONOUS
30
];
31
if
(!in_array($type, $types)) {
32
throw
new \InvalidArgumentException(
33
"Unknown background tasks type: '$type'"
34
);
35
}
36
if
($max_concurrent_tasks < 1) {
37
throw
new \InvalidArgumentException(
38
"There must be at least 1 concurrent background task."
39
);
40
}
41
$this->type =
$type
;
42
$this->max_concurrent_tasks =
$max_concurrent_tasks
;
43
}
44
45
public
function
getType
() : string
46
{
47
return
$this->type
;
48
}
49
50
public
function
getMaxCurrentTasks
() : int
51
{
52
return
$this->max_concurrent_tasks
;
53
}
54
}
ilBackgroundTasksSetupConfig\$type
$type
Definition:
class.ilBackgroundTasksSetupConfig.php:16
ilBackgroundTasksSetupConfig\__construct
__construct(string $type, int $max_concurrent_tasks)
Definition:
class.ilBackgroundTasksSetupConfig.php:23
ilBackgroundTasksSetupConfig\getType
getType()
Definition:
class.ilBackgroundTasksSetupConfig.php:45
ilBackgroundTasksSetupConfig\$max_concurrent_tasks
$max_concurrent_tasks
Definition:
class.ilBackgroundTasksSetupConfig.php:21
ILIAS\Setup
Definition:
AchievementTracker.php:5
Password
ilBackgroundTasksSetupConfig\TYPE_ASYNCHRONOUS
const TYPE_ASYNCHRONOUS
Definition:
class.ilBackgroundTasksSetupConfig.php:11
ilBackgroundTasksSetupConfig
Definition:
class.ilBackgroundTasksSetupConfig.php:8
ilBackgroundTasksSetupConfig\TYPE_SYNCHRONOUS
const TYPE_SYNCHRONOUS
Definition:
class.ilBackgroundTasksSetupConfig.php:10
ilBackgroundTasksSetupConfig\getMaxCurrentTasks
getMaxCurrentTasks()
Definition:
class.ilBackgroundTasksSetupConfig.php:50
Services
BackgroundTasks
classes
Setup
class.ilBackgroundTasksSetupConfig.php
Generated on Thu Apr 3 2025 20:01:02 for ILIAS by
1.8.13 (using
Doxyfile
)