forwardMaximumNumberOfRepeatingGroupEntries Method    Table of ContentSchemaHeaderType Method forward
Decoder.MaximumNumberOfRepeatingGroupEntries Method (Int32)
Manage maximum number of repeating groups, allowed for decoded messages. This parameter is used during decoding and is useful to detect a broken data, which, in particular cases, can 'need' to allocate unexpectedly huge number of entries (for instance - billions of entries, while normally there are just a few ones). This situation results in memory exhausting and (often) significantly decrease overall system performance. To prevent memory exhausting and negative consequences of that, this parameter should be configured with the value, which is greater then maximum possible number of entries in valid input data, but less then maximum integer value (default one). In a lot of real cases value of 10000 is good enough to detect broken data without memory overloading.

Namespace:  FIXForge.NET.FIX.SBE
Assembly:  FIXForge.NET.FIX.Engine-net-4.8_x64 (in FIXForge.NET.FIX.Engine-net-4.8_x64.dll) Version: 4.10.1.0
Syntax
C#
public void MaximumNumberOfRepeatingGroupEntries(
	int value
)

Parameters

value
Type: System.Int32
Number of repeating groups, allowed for decoded messages.
See Also