Source of file IAsyncClient.php
Size: 0,350 Bytes - Last Modified: 2019-04-25T22:07:38+00:00
/data/development/sccp/sources/PAMI/src/PAMI/AsyncAgi/IAsyncClient.php
| 123456789101112131415161718192021 | <?phpnamespace PAMI\AsyncAgi; use PAGI\Client\IClient; /** * Async AGI Client interface. */interface IAsyncClient extends IClient {/** * Interrupts expected flow of Async AGI commands and returns * control to previous source (typically, the PBX dialplan). * * @return void */public function asyncBreak(); } |