ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ThunkValue.php
Go to the documentation of this file.
1<?php
2
4
6//use ILIAS\BackgroundTasks\ValueType;
8
19{
20
24 protected $type;
25
26
30 public function __construct()
31 {
32 }
33
34
38 public function getType()
39 {
40 return $this->parentTask->getOutputType();
41 }
42
43
51 public function serialize()
52 {
53 return null;
54 }
55
56
69 public function unserialize($serialized)
70 {
71 // Nothing to do.
72 }
73
74
80 public function getHash()
81 {
82 return null;
83 }
84
85
91 public function equals(Value $other)
92 {
93 return false;
94 }
95
96
102 public function setValue($value)
103 {
104 // TODO: Implement setValue() method.
105 }
106}
An exception for terminatinating execution or to throw for unit testing.
unserialize($serialized)
Constructs the object.
Definition: ThunkValue.php:69
serialize()
String representation of object.
Definition: ThunkValue.php:51