Nats\Message::reply PHP Метод

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

Allows you reply the message with a specific body.
public reply ( string $body ) : void
$body string Body to be set.
Результат void
    public function reply($body)
    {
        $this->getConn()->publish($this->getSubject(), $body);
    }