-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing policies to PolicyDefinition (#281)
* Update PolicyDefinition.cs * Create Overflow.cs * Update Overflow.cs * Update Overflow.cs * Create HaPromote.cs * Create QueueLocator.cs * Create DeadLetterStrategy.cs * Update ManagementClientTests.cs * Update RabbitMQFixture.cs * Update PolicyDefinition.cs * Create JsonStringEnumConverterEx * Update ManagementClientTests.cs * Create dsd * Delete Source/EasyNetQ.Management.Client.IntegrationTests/ManagementClientTests.cs * Rename dsd to ManagementClientTests.cs * Rename JsonStringEnumConverterEx to JsonStringEnumConverterEx.cs * Update JsonStringEnumConverterEx.cs * Update JsonStringEnumConverterEx.cs internal class JsonStringEnumConverterEx * Create QueueVersion.cs * Create JsonNumberEnumConverter.cs * Update PolicyDefinition.cs * Update ManagementClientTests.cs * Update EasyNetQ.Management.Client.approved.txt * Update EasyNetQ.Management.Client.approved.txt - remove last EOL * Update EasyNetQ.Management.Client.approved.txt - EOL * Create .gitattributes * Update EasyNetQ.Management.Client.approved.txt * Update .gitattributes * Update EasyNetQ.Management.Client.approved.txt * Update .gitattributes * Update EasyNetQ.Management.Client.approved.txt * remove eof eol * delete .gitattributes
- Loading branch information
1 parent
bb54ff6
commit 7ca648c
Showing
11 changed files
with
391 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
Source/EasyNetQ.Management.Client/Model/DeadLetterStrategy.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace EasyNetQ.Management.Client.Model; | ||
|
||
public enum DeadLetterStrategy | ||
{ | ||
[EnumMember(Value = "at-most-once")] | ||
AtMostOnce, | ||
[EnumMember(Value = "at-least-once")] | ||
AtLeastOnce | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace EasyNetQ.Management.Client.Model; | ||
|
||
public enum HaPromote | ||
{ | ||
[EnumMember(Value = "when-synced")] | ||
WhenSynced, | ||
[EnumMember(Value = "always")] | ||
Always | ||
} |
Oops, something went wrong.