Disque\Queue\Queue::__construct PHP Method

__construct() public method

Create a queue
public __construct ( Client $client, string $name )
$client Disque\Client Client
$name string Queue name
    public function __construct(Client $client, $name)
    {
        $this->client = $client;
        $this->name = $name;
        $this->setMarshaler(new JobMarshaler());
    }