| 1 | <?php |
||
| 13 | abstract class Request extends \hiqdev\hiart\AbstractRequest |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var object |
||
| 17 | */ |
||
| 18 | protected $worker; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string transport implementation to be specified in concrete implementation. |
||
| 22 | */ |
||
| 23 | public $handlerClass; |
||
| 24 | |||
| 25 | abstract protected function createWorker(); |
||
| 26 | |||
| 27 | public function send($options = []) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return Worker |
||
| 36 | */ |
||
| 37 | public function getWorker() |
||
| 46 | } |
||
| 47 |