ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilCalFileZipJob Class Reference
+ Inheritance diagram for ilCalFileZipJob:
+ Collaboration diagram for ilCalFileZipJob:

Public Member Functions

 getType ()
 Get type. More...
 
 run (array $values, \ILIAS\BackgroundTasks\Observer $observer)
 Run. More...
 
 getInputTypes ()
 Get input types. More...
 
 setInput (array $values)
 Set input // what about run input? More...
 
 getOutputType ()
 
 getOutput ()
 Get output. More...
 
 isStateless ()
 
- Public Member Functions inherited from ILIAS\BackgroundTasks\Task\Job
 run (array $input, Observer $observer)
 
 isStateless ()
 
 getInput ()
 
 getExpectedTimeOfTaskInSeconds ()
 
- Public Member Functions inherited from ILIAS\BackgroundTasks\Task
 getType ()
 
 getInputTypes ()
 
 getOutputType ()
 
 getOutput ()
 
 setInput (array $values)
 
 getInput ()
 
 unfoldTask ()
 
 getRemoveOption ()
 
 getAbortOption ()
 

Protected Attributes

 $file
 

Detailed Description

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 12 of file class.ilCalFileZipJob.php.

Member Function Documentation

◆ getInputTypes()

ilCalFileZipJob::getInputTypes ( )

Get input types.

Parameters

return

Implements ILIAS\BackgroundTasks\Task.

Definition at line 43 of file class.ilCalFileZipJob.php.

44 {
45 return array("string");
46 }

◆ getOutput()

ilCalFileZipJob::getOutput ( )

Get output.

Parameters

return

Implements ILIAS\BackgroundTasks\Task.

Definition at line 76 of file class.ilCalFileZipJob.php.

77 {
78 return $this->file;
79 }

References $file.

◆ getOutputType()

ilCalFileZipJob::getOutputType ( )
Parameters

return

Implements ILIAS\BackgroundTasks\Task.

Definition at line 65 of file class.ilCalFileZipJob.php.

66 {
67 return "string";
68 }

◆ getType()

ilCalFileZipJob::getType ( )

Get type.

Returns
string

Implements ILIAS\BackgroundTasks\Task.

Definition at line 21 of file class.ilCalFileZipJob.php.

22 {
23 return "mytype";
24 }

◆ isStateless()

ilCalFileZipJob::isStateless ( )
Parameters

return

Implements ILIAS\BackgroundTasks\Task\Job.

Definition at line 88 of file class.ilCalFileZipJob.php.

89 {
90 return false;
91 }

◆ run()

ilCalFileZipJob::run ( array  $values,
\ILIAS\BackgroundTasks\Observer  $observer 
)

Run.

Parameters

Definition at line 32 of file class.ilCalFileZipJob.php.

33 {
34 $this->file = current($values);
35 }

◆ setInput()

ilCalFileZipJob::setInput ( array  $values)

Set input // what about run input?

Parameters

Implements ILIAS\BackgroundTasks\Task.

Definition at line 53 of file class.ilCalFileZipJob.php.

54 {
55 $this->file = current($values);
56 }

Field Documentation

◆ $file

ilCalFileZipJob::$file
protected

Definition at line 14 of file class.ilCalFileZipJob.php.

Referenced by getOutput().


The documentation for this class was generated from the following file: