Kraken\Channel\ChannelComposite::handleSendAsync PHP Метод

handleSendAsync() защищенный Метод

protected handleSendAsync ( string $name, Kraken\Channel\Protocol\ProtocolInterface $message, integer $flags = Channel::MODE_DEFAULT ) : boolean
$name string
$message Kraken\Channel\Protocol\ProtocolInterface
$flags integer
Результат boolean
    protected function handleSendAsync($name, $message, $flags = Channel::MODE_DEFAULT)
    {
        if ($message->getType() === '') {
            $message->setType(Channel::TYPE_SND);
        }
        if ($message->getDestination() === '') {
            $message->setDestination($name);
        }
        return $this->getOutput()->handle($name, $message, $flags);
    }