/**
  * Execute console.
  *
  * @param AbstractInput $input
  * @param Output        $output
  */
 protected function execute(AbstractInput $input, Output $output)
 {
     $this->output = $output;
     $this->input = $input;
     $this->configureQueue();
     $this->queue->listen($input->argument->get('channel'));
 }