CarTrackingRuleEngine/RuleEngine/Constants/QueueConstant.cs

7 lines
138 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
namespace RuleEngine.Constants
{
public static class QueueConstant
{
public const int QUEUESIZE = 1024 * 8; // 8MB
}
}