ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
BackgroundTaskServices.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\BackgroundTasks
;
20
21
use
ILIAS\BackgroundTasks\Persistence
;
22
use
ILIAS\BackgroundTasks\Task\TaskFactory
;
23
use
ILIAS\BackgroundTasks\TaskManager
;
24
use
ILIAS\DI\Container
;
25
use
ILIAS\BackgroundTasks\Dependencies\Injector
;
26
32
class
BackgroundTaskServices
33
{
34
public
function
__construct
(
protected
Container
$container
)
35
{
36
}
37
38
public
function
taskFactory
():
TaskFactory
39
{
40
return
$this->container[
'bt.task_factory'
];
41
}
42
43
public
function
persistence
():
Persistence
44
{
45
return
$this->container[
'bt.persistence'
];
46
}
47
48
public
function
taskManager
(): TaskManager
49
{
50
return
$this->container[
'bt.task_manager'
];
51
}
52
53
public
function
injector
(): Injector
54
{
55
return
$this->container[
'bt.injector'
];
56
}
57
}
ILIAS\BackgroundTasks\Persistence
Definition:
Persistence.php:26
ILIAS\BackgroundTasks\BackgroundTaskServices
Class BackgroundTaskServices.
Definition:
BackgroundTaskServices.php:32
ILIAS\BackgroundTasks\BackgroundTaskServices\taskFactory
taskFactory()
Definition:
BackgroundTaskServices.php:38
ILIAS\BackgroundTasks
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
BackgroundTaskServices.php:19
ILIAS\BackgroundTasks\BackgroundTaskServices\__construct
__construct(protected Container $container)
Definition:
BackgroundTaskServices.php:34
TaskManager
$container
$container
Definition:
wac.php:36
Container
Injector
ILIAS\BackgroundTasks\BackgroundTaskServices\persistence
persistence()
Definition:
BackgroundTaskServices.php:43
TaskFactory
ILIAS\BackgroundTasks\BackgroundTaskServices\taskManager
taskManager()
Definition:
BackgroundTaskServices.php:48
ILIAS\Container
Definition:
Container.php:23
Persistence
ILIAS\BackgroundTasks\BackgroundTaskServices\injector
injector()
Definition:
BackgroundTaskServices.php:53
components
ILIAS
BackgroundTasks
src
BackgroundTaskServices.php
Generated on Thu Apr 3 2025 23:02:19 for ILIAS by
1.8.13 (using
Doxyfile
)