Resque\Commands\Socket\Receive::configure PHP Метод

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

protected configure ( )
    protected function configure()
    {
        $this->setName('socket:receive')->setDefinition($this->mergeDefinitions(array(new InputOption('listenhost', null, InputOption::VALUE_OPTIONAL, 'The host to listen on.', '0.0.0.0'), new InputOption('listenport', null, InputOption::VALUE_OPTIONAL, 'The port to listen on.', Socket\Server::DEFAULT_PORT), new InputOption('listenretry', null, InputOption::VALUE_NONE, 'If can\'t bind address or port then retry every <timeout> seconds until it can.'), new InputOption('listentimeout', 't', InputOption::VALUE_OPTIONAL, 'The retry timeout time (seconds).', 10))))->setDescription('Listens to socket in order to receive events')->setHelp('Listens to socket in order to receive events');
    }