1 | <?php |
||
12 | trait CallAsyncTrait |
||
13 | { |
||
14 | abstract protected function getTransport(): Client; |
||
15 | |||
16 | 1 | protected function callAsync(string $function, ...$args) |
|
25 | |||
26 | 1 | protected function observableToPromise(ObservableInterface $observable): PromiseInterface |
|
30 | |||
31 | 1 | protected function wait(PromiseInterface $promise) |
|
38 | } |
||
39 |