Class QueueDeclaration
Inheritance
QueueDeclaration
Assembly: Akka.Streams.Amqp.RabbitMq.dll
Syntax
public sealed class QueueDeclaration : IDeclaration
Properties
|
Improve this Doc
View Source
Arguments
Declaration
public IReadOnlyDictionary<string, object> Arguments { get; }
Property Value
|
Improve this Doc
View Source
AutoDelete
Declaration
public bool AutoDelete { get; }
Property Value
|
Improve this Doc
View Source
Durable
Declaration
public bool Durable { get; }
Property Value
|
Improve this Doc
View Source
Exclusive
Declaration
public bool Exclusive { get; }
Property Value
|
Improve this Doc
View Source
Name
Declaration
public string Name { get; }
Property Value
Methods
|
Improve this Doc
View Source
Create(String)
Declaration
public static QueueDeclaration Create(string name)
Parameters
Type |
Name |
Description |
String |
name |
|
Returns
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
|
Improve this Doc
View Source
WithArguments(KeyValuePair<String, Object>[])
Declaration
public QueueDeclaration WithArguments(params KeyValuePair<string, object>[] arguments)
Parameters
Returns
|
Improve this Doc
View Source
WithArguments(String, Object)
Declaration
public QueueDeclaration WithArguments(string key, object value)
Parameters
Returns
|
Improve this Doc
View Source
WithAutoDelete(Boolean)
Declaration
public QueueDeclaration WithAutoDelete(bool autoDelete)
Parameters
Type |
Name |
Description |
Boolean |
autoDelete |
|
Returns
|
Improve this Doc
View Source
WithDurable(Boolean)
Declaration
public QueueDeclaration WithDurable(bool durable)
Parameters
Type |
Name |
Description |
Boolean |
durable |
|
Returns
|
Improve this Doc
View Source
WithExclusive(Boolean)
Declaration
public QueueDeclaration WithExclusive(bool exclusive)
Parameters
Type |
Name |
Description |
Boolean |
exclusive |
|
Returns
Implements