Interface Yiisoft\Queue\Amqp\Settings\QueueSettingsInterface
| Implemented by | Yiisoft\ |
|---|
Public Methods
Method Details
| public abstract \ |
public function getArguments(): AMQPTable|array;
Returns positional arguments to be used with {@see AMQPChannel::queue_declare()}
| public abstract (\ |
public function getPositionalSettings(): array;
| public abstract ?\ |
public function getQosSettings(): ?QosSettings;
| public abstract self withArguments ( \ | ||
| $arguments | \ |
|
public function withArguments(AMQPTable|array $arguments): self;
| public abstract self withAutoDeletable ( boolean $autoDeletable ) | ||
| $autoDeletable | boolean | |
public function withAutoDeletable(bool $autoDeletable): self;
| public abstract self withDurable ( boolean $durable ) | ||
| $durable | boolean | |
public function withDurable(bool $durable): self;
| public abstract self withExclusive ( boolean $exclusive ) | ||
| $exclusive | boolean | |
public function withExclusive(bool $exclusive): self;
| public abstract self withName ( string $name ) | ||
| $name | string | |
public function withName(string $name): self;
| public abstract self withNowait ( boolean $nowait ) | ||
| $nowait | boolean | |
public function withNowait(bool $nowait): self;
| public abstract self withPassive ( boolean $passive ) | ||
| $passive | boolean | |
public function withPassive(bool $passive): self;
| public abstract self withQosSettings ( ?\ | ||
| $qosSettings | ?\ |
|
public function withQosSettings(?QosSettings $qosSettings): self;
| public abstract self withTicket ( ?int $ticket ) | ||
| $ticket | ?int | |
public function withTicket(?int $ticket): self;
User Contributed Notes
Leave a comment
Join the conversation to share a note.