Class RabbitMQConsumerQueueConfiguration
- java.lang.Object
-
- de.codecentric.reedelk.rabbitmq.component.RabbitMQConsumerQueueConfiguration
-
- All Implemented Interfaces:
de.codecentric.reedelk.runtime.api.component.Implementor
public class RabbitMQConsumerQueueConfiguration extends Object implements de.codecentric.reedelk.runtime.api.component.Implementor
-
-
Constructor Summary
Constructors Constructor Description RabbitMQConsumerQueueConfiguration()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleanisAutoDelete(RabbitMQConsumerQueueConfiguration configuration)static booleanisCreateNew(RabbitMQConsumerQueueConfiguration configuration)static booleanisDurable(RabbitMQConsumerQueueConfiguration configuration)static booleanisExclusive(RabbitMQConsumerQueueConfiguration configuration)voidsetAutoDelete(Boolean autoDelete)voidsetCreate(Boolean create)voidsetDurable(Boolean durable)voidsetExclusive(Boolean exclusive)
-
-
-
Method Detail
-
setDurable
public void setDurable(Boolean durable)
-
setExclusive
public void setExclusive(Boolean exclusive)
-
setAutoDelete
public void setAutoDelete(Boolean autoDelete)
-
setCreate
public void setCreate(Boolean create)
-
isCreateNew
public static boolean isCreateNew(RabbitMQConsumerQueueConfiguration configuration)
-
isDurable
public static boolean isDurable(RabbitMQConsumerQueueConfiguration configuration)
-
isExclusive
public static boolean isExclusive(RabbitMQConsumerQueueConfiguration configuration)
-
isAutoDelete
public static boolean isAutoDelete(RabbitMQConsumerQueueConfiguration configuration)
-
-