Generate a new ChangeSupport instance which has room for initialSize listeners before it needs to grow any resources, and which will grow by delta each time.

Namespace:  BioSharp.Core.Utils
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
public ChangeSupport(
	int initialSize,
	int delta
)

Parameters

initialSize
Type: System..::.Int32
the number of listeners that can be added before this needs to grow for the first time
delta
Type: System..::.Int32
the number of listener slots that this will grow by each time it needs to

See Also