Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
YarinOmesi committed Sep 2, 2023
1 parent 3228999 commit 892fb06
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=contexts/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=Exceptions/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=rabbitmqtransport_005Cconfiguration_005Ctopology/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=rabbitmqtransport_005Cconfiguration_005Ctopology_005Cconsume/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=rabbitmqtransport_005Cconfiguration_005Ctopology_005Cconsumetopologyspecification/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=rabbitmqtransport_005Cconfiguration_005Ctopology_005Cpublish/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=rabbitmqtransport_005Ccontexts/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=rabbitmqtransport_005Ctopology_005Centities/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=testing/@EntryIndexedValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=topology/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=topology_005Cconfiguration/@EntryIndexedValue">False</s:Boolean></wpf:ResourceDictionary>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=topology_005Cconfiguration/@EntryIndexedValue">False</s:Boolean></wpf:ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ public void AutoDeleteAfter(TimeSpan duration)
QueueConfigurator.QueueExpiration = duration;
}

public string QueueName => QueueConfigurator.QueueName;
public string QueueName
{
get => QueueConfigurator.QueueName;
set => QueueConfigurator.QueueName = value;
}

public IDictionary<string, object> QueueArguments => QueueConfigurator.QueueArguments;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ public RabbitMqReceiveSettings(IRabbitMqEndpointConfiguration configuration, str
ConsumeArguments = new Dictionary<string, object>();
}

public string QueueName
{
get => QueueConfigurator.QueueName;
set => QueueConfigurator.QueueName = value;
}

public IDictionary<string, object> QueueArguments => QueueConfigurator.QueueArguments;


public int ConsumerPriority
{
set => ConsumeArguments[Headers.XPriority] = value;
Expand Down

0 comments on commit 892fb06

Please sign in to comment.