1 | <?php |
||
33 | class Queue extends AbstractEntity |
||
34 | { |
||
35 | /** |
||
36 | * @var array |
||
37 | */ |
||
38 | protected $row; |
||
39 | |||
40 | /** |
||
41 | * @var int |
||
42 | */ |
||
43 | protected $qid = 0; |
||
44 | |||
45 | /** |
||
46 | * @var int |
||
47 | */ |
||
48 | protected $pageId = 0; |
||
49 | |||
50 | /** |
||
51 | * @var string |
||
52 | */ |
||
53 | protected $parameters = ''; |
||
54 | |||
55 | /** |
||
56 | * @var string |
||
57 | */ |
||
58 | protected $parametersHash = ''; |
||
59 | |||
60 | /** |
||
61 | * @var string |
||
62 | */ |
||
63 | protected $configurationHash = ''; |
||
64 | |||
65 | /** |
||
66 | * @var bool |
||
67 | */ |
||
68 | protected $scheduled = false; |
||
69 | |||
70 | /** |
||
71 | * @var int |
||
72 | */ |
||
73 | protected $execTime = 0; |
||
74 | |||
75 | /** |
||
76 | * @var int |
||
77 | */ |
||
78 | protected $setId = 0; |
||
79 | |||
80 | /** |
||
81 | * @var string |
||
82 | */ |
||
83 | protected $resultData = ''; |
||
84 | |||
85 | /** |
||
86 | * @var bool |
||
87 | */ |
||
88 | protected $processScheduled = false; |
||
89 | |||
90 | /** |
||
91 | * @var string |
||
92 | */ |
||
93 | protected $processId = ''; |
||
94 | |||
95 | /** |
||
96 | * @var string |
||
97 | */ |
||
98 | protected $processIdCompleted = ''; |
||
99 | |||
100 | /** |
||
101 | * @var string |
||
102 | */ |
||
103 | protected $configuration = ''; |
||
104 | |||
105 | /** |
||
106 | * @return int |
||
107 | */ |
||
108 | 1 | public function getQid() |
|
112 | |||
113 | /** |
||
114 | * @param int $qid |
||
115 | */ |
||
116 | 1 | public function setQid($qid) |
|
120 | |||
121 | /** |
||
122 | * @return int |
||
123 | */ |
||
124 | 1 | public function getPageId() |
|
128 | |||
129 | /** |
||
130 | * @param int $pageId |
||
131 | */ |
||
132 | 1 | public function setPageId($pageId) |
|
136 | |||
137 | /** |
||
138 | * @return string |
||
139 | */ |
||
140 | 1 | public function getParameters() |
|
144 | |||
145 | /** |
||
146 | * @param string $parameters |
||
147 | */ |
||
148 | 1 | public function setParameters($parameters) |
|
152 | |||
153 | /** |
||
154 | * @return string |
||
155 | */ |
||
156 | 1 | public function getParametersHash() |
|
160 | |||
161 | /** |
||
162 | * @param string $parametersHash |
||
163 | */ |
||
164 | 1 | public function setParametersHash($parametersHash) |
|
168 | |||
169 | /** |
||
170 | * @return string |
||
171 | */ |
||
172 | 1 | public function getConfigurationHash() |
|
176 | |||
177 | /** |
||
178 | * @param string $configurationHash |
||
179 | */ |
||
180 | 1 | public function setConfigurationHash($configurationHash) |
|
184 | |||
185 | /** |
||
186 | * @return bool |
||
187 | */ |
||
188 | 1 | public function isScheduled() |
|
192 | |||
193 | /** |
||
194 | * @param bool $scheduled |
||
195 | */ |
||
196 | 1 | public function setScheduled($scheduled) |
|
200 | |||
201 | /** |
||
202 | * @return int |
||
203 | */ |
||
204 | 1 | public function getExecTime() |
|
208 | |||
209 | /** |
||
210 | * @param int $execTime |
||
211 | */ |
||
212 | 1 | public function setExecTime($execTime) |
|
216 | |||
217 | /** |
||
218 | * @return int |
||
219 | */ |
||
220 | 1 | public function getSetId() |
|
224 | |||
225 | /** |
||
226 | * @param int $setId |
||
227 | */ |
||
228 | 1 | public function setSetId($setId) |
|
232 | |||
233 | /** |
||
234 | * @return string |
||
235 | */ |
||
236 | 1 | public function getResultData() |
|
240 | |||
241 | /** |
||
242 | * @param string $resultData |
||
243 | */ |
||
244 | 1 | public function setResultData($resultData) |
|
248 | |||
249 | /** |
||
250 | * @return bool |
||
251 | */ |
||
252 | 1 | public function isProcessScheduled() |
|
256 | |||
257 | /** |
||
258 | * @param bool $processScheduled |
||
259 | */ |
||
260 | 1 | public function setProcessScheduled($processScheduled) |
|
264 | |||
265 | /** |
||
266 | * @return string |
||
267 | */ |
||
268 | 1 | public function getProcessId() |
|
272 | |||
273 | /** |
||
274 | * @param string $processId |
||
275 | */ |
||
276 | 1 | public function setProcessId($processId) |
|
280 | |||
281 | /** |
||
282 | * @return string |
||
283 | */ |
||
284 | 1 | public function getProcessIdCompleted() |
|
288 | |||
289 | /** |
||
290 | * @param string $processIdCompleted |
||
291 | */ |
||
292 | 1 | public function setProcessIdCompleted($processIdCompleted) |
|
296 | |||
297 | /** |
||
298 | * @return string |
||
299 | */ |
||
300 | 1 | public function getConfiguration() |
|
304 | |||
305 | /** |
||
306 | * @param string $configuration |
||
307 | */ |
||
308 | 1 | public function setConfiguration($configuration) |
|
312 | } |
||
313 |