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.
7 lines
139 B
C#
7 lines
139 B
C#
namespace ReC.Application.Common.Options;
|
|
|
|
public class RecActionOptions
|
|
{
|
|
public int MaxConcurrentInvocations { get; set; } = 5;
|
|
}
|