Show / Hide Table of Contents

Class QueueDeclareConfiguration

Inheritance
System.Object
QueueDeclareConfiguration
JobQueueConfiguration
Namespace: Volo.Abp.RabbitMQ
Assembly: Volo.Abp.RabbitMQ.dll
Syntax
public class QueueDeclareConfiguration : object

Constructors

QueueDeclareConfiguration(String, Boolean, Boolean, Boolean)

Declaration
public QueueDeclareConfiguration(string queueName, bool durable = true, bool exclusive = false, bool autoDelete = false)
Parameters
Type Name Description
System.String queueName
System.Boolean durable
System.Boolean exclusive
System.Boolean autoDelete

Properties

Arguments

Declaration
public IDictionary<string, object> Arguments { get; }
Property Value
Type Description
IDictionary<System.String, System.Object>

AutoDelete

Declaration
public bool AutoDelete { get; set; }
Property Value
Type Description
System.Boolean

Durable

Declaration
public bool Durable { get; set; }
Property Value
Type Description
System.Boolean

Exclusive

Declaration
public bool Exclusive { get; set; }
Property Value
Type Description
System.Boolean

QueueName

Declaration
public string QueueName { get; }
Property Value
Type Description
System.String

Methods

Declare(IModel)

Declaration
public virtual QueueDeclareOk Declare(IModel channel)
Parameters
Type Name Description
IModel channel
Returns
Type Description
QueueDeclareOk

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft