Add RecActionOptions class for concurrency configuration
A new `RecActionOptions` class was introduced in the `ReC.Application.Common.Options` namespace. This class includes a `MaxConcurrentInvocations` property with a default value of 5, intended to configure the maximum number of concurrent invocations allowed. This addition helps centralize and manage concurrency settings in the application.
This commit is contained in:
parent
5e4f113145
commit
46ef5e0d02
6
src/ReC.Application/Common/Options/RecActionOptions.cs
Normal file
6
src/ReC.Application/Common/Options/RecActionOptions.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace ReC.Application.Common.Options;
|
||||
|
||||
public class RecActionOptions
|
||||
{
|
||||
public int MaxConcurrentInvocations { get; set; } = 5;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user