Наследование: extends PHPDaemon\Network\Client
Пример #1
0
 /**
  * Called when the worker is ready to go.
  * @return void
  */
 public function onReady()
 {
     \PHPDaemon\Clients\IMAP\Pool::getInstance()->open($this->config->host->value, $this->config->login->value, $this->config->password->value, function ($conn) {
         if (!$conn) {
             $this->log('Fail to open IMAP connection');
             return;
         }
         $this->log('open IMAP connection success');
         $conn->getRawMessage(function ($conn, $isSuccess, $raw) {
             $this->log(print_r($raw, true));
             $conn->logout();
         }, 1, false);
     }, true);
 }