ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ThunkValue.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
8 //use ILIAS\BackgroundTasks\ValueType;
9 
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 }
serialize()
String representation of object.
Definition: ThunkValue.php:52
unserialize($serialized)
Constructs the object.
Definition: ThunkValue.php:70