ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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
ThunkValue.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\BackgroundTasks\Implementation\Values
;
4
5
use
ILIAS\BackgroundTasks\Types\Type
;
6
use
ILIAS\BackgroundTasks\Value
;
7
8
//use ILIAS\BackgroundTasks\ValueType;
9
19
class
ThunkValue
extends
AbstractValue
20
{
21
25
protected
$type
;
26
27
31
public
function
__construct
()
32
{
33
}
34
35
39
public
function
getType
()
40
{
41
return
$this->parentTask->getOutputType();
42
}
43
44
52
public
function
serialize
()
53
{
54
return
null;
55
}
56
57
70
public
function
unserialize
($serialized)
71
{
72
// Nothing to do.
73
}
74
75
81
public
function
getHash
()
82
{
83
return
null;
84
}
85
86
92
public
function
equals
(
Value
$other)
93
{
94
return
false
;
95
}
96
97
103
public
function
setValue
($value)
104
{
105
// TODO: Implement setValue() method.
106
}
107
}
ILIAS\BackgroundTasks\Implementation\Values\AbstractValue
Definition:
AbstractValue.php:17
ILIAS\BackgroundTasks\Value
Definition:
Value.php:15
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\serialize
serialize()
String representation of object.
Definition:
ThunkValue.php:52
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\unserialize
unserialize($serialized)
Constructs the object.
Definition:
ThunkValue.php:70
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\__construct
__construct()
ThunkValue constructor.
Definition:
ThunkValue.php:31
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\getType
getType()
Definition:
ThunkValue.php:39
ILIAS\BackgroundTasks\Implementation\Values
Definition:
AbstractValue.php:3
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\$type
$type
Definition:
ThunkValue.php:25
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\getHash
getHash()
Definition:
ThunkValue.php:81
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\equals
equals(Value $other)
Definition:
ThunkValue.php:92
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue\setValue
setValue($value)
Definition:
ThunkValue.php:103
ILIAS\BackgroundTasks\Implementation\Values\ThunkValue
Definition:
ThunkValue.php:19
Type
Value
src
BackgroundTasks
Implementation
Values
ThunkValue.php
Generated on Sat Apr 5 2025 21:01:43 for ILIAS by
1.8.13 (using
Doxyfile
)