Examples\ExampleIMAPClient::onReady PHP Метод

onReady() публичный Метод

Called when the worker is ready to go.
public onReady ( ) : void
Результат 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);
    }