enum

HT2::AdaptiveFlowControl::Strategy

Inherits Enum < Comparable < Value < Object

Window update strategies

Constants

CONSERVATIVE = 0

Conservative: Update when window drops below 25%

MODERATE = 1

Moderate: Update when window drops below 50% (current default)

AGGRESSIVE = 2

Aggressive: Update when window drops below 75%

DYNAMIC = 3

Dynamic: Adjust threshold based on consumption rate

Instance methods

aggressive?

Returns true if this enum value equals AGGRESSIVE

Source
conservative?

Returns true if this enum value equals CONSERVATIVE

Source
dynamic?

Returns true if this enum value equals DYNAMIC

Source
moderate?

Returns true if this enum value equals MODERATE

Source