Click or drag to resize
Akka.NETDefaultResizer Constructor
Initializes a new instance of the DefaultResizer class.

Namespace:  Akka.Routing
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public DefaultResizer(
	int lower,
	int upper,
	int pressureThreshold = 1,
	double rampupRate = 0.2,
	double backoffThreshold = 0.3,
	double backoffRate = 0.1,
	int messagesPerResize = 10
)

Parameters

lower
Type: SystemInt32
TBD
upper
Type: SystemInt32
TBD
pressureThreshold (Optional)
Type: SystemInt32
TBD
rampupRate (Optional)
Type: SystemDouble
TBD
backoffThreshold (Optional)
Type: SystemDouble
TBD
backoffRate (Optional)
Type: SystemDouble
TBD
messagesPerResize (Optional)
Type: SystemInt32
TBD
Exceptions
ExceptionCondition
ArgumentException This exception can be thrown for a number of reasons. These include:
  • The given lower bound was negative.
  • The given upper bound was negative.
  • The given upper bound was below the lowerbound.
  • The given rampupRate was negative.
  • The given backoffThreshold was greater than one.
  • The given backoffRate was negative.
  • The given messagesPerResize was less than one.
See Also