Interface Yiisoft\Queue\AMQP\Settings\QueueSettingsInterface
| Implemented by | Yiisoft\Queue\AMQP\Settings\Queue |
|---|
Public Methods
Method Details
| public abstract getArguments( ): \PhpAmqpLib\Wire\AMQPTable|array |
public function getArguments(): AMQPTable|array;
Returns positional arguments to be used with \PhpAmqpLib\Channel\AMQPChannel::queue_declare()
| public abstract getPositionalSettings( ): (\PhpAmqpLib\Wire\AMQPTable|array|boolean|integer|string|null)[] |
public function getPositionalSettings(): array;
| public abstract withArguments( \PhpAmqpLib\Wire\AMQPTable|array $arguments ): self | ||
| $arguments | \PhpAmqpLib\Wire\AMQPTable|array | |
public function withArguments(AMQPTable|array $arguments): self;
| public abstract withAutoDeletable( boolean $autoDeletable ): self | ||
| $autoDeletable | boolean | |
public function withAutoDeletable(bool $autoDeletable): self;
| public abstract withDurable( boolean $durable ): self | ||
| $durable | boolean | |
public function withDurable(bool $durable): self;
| public abstract withExclusive( boolean $exclusive ): self | ||
| $exclusive | boolean | |
public function withExclusive(bool $exclusive): self;
| public abstract withName( string $name ): self | ||
| $name | string | |
public function withName(string $name): self;
| public abstract withNowait( boolean $nowait ): self | ||
| $nowait | boolean | |
public function withNowait(bool $nowait): self;
| public abstract withPassive( boolean $passive ): self | ||
| $passive | boolean | |
public function withPassive(bool $passive): self;
| public abstract withTicket( integer|null $ticket ): self | ||
| $ticket | integer|null | |
public function withTicket(?int $ticket): self;
Signup or Login in order to comment.