Class BackpressureCfg
- java.lang.Object
-
- io.camunda.zeebe.broker.system.configuration.backpressure.BackpressureCfg
-
- All Implemented Interfaces:
ConfigurationEntry
public final class BackpressureCfg extends Object implements ConfigurationEntry
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBackpressureCfg.LimitAlgorithm
-
Constructor Summary
Constructors Constructor Description BackpressureCfg()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AIMDCfggetAimd()BackpressureCfg.LimitAlgorithmgetAlgorithm()FixedCfggetFixed()GradientCfggetGradient()Gradient2CfggetGradient2()VegasCfggetVegas()booleanisEnabled()voidsetAlgorithm(String algorithm)BackpressureCfgsetEnabled(boolean enabled)voidsetUseWindowed(boolean useWindowed)StringtoString()booleanuseWindowed()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.camunda.zeebe.broker.system.configuration.ConfigurationEntry
init
-
-
-
-
Method Detail
-
isEnabled
public boolean isEnabled()
-
setEnabled
public BackpressureCfg setEnabled(boolean enabled)
-
useWindowed
public boolean useWindowed()
-
setUseWindowed
public void setUseWindowed(boolean useWindowed)
-
getAlgorithm
public BackpressureCfg.LimitAlgorithm getAlgorithm()
-
setAlgorithm
public void setAlgorithm(String algorithm)
-
getAimd
public AIMDCfg getAimd()
-
getFixed
public FixedCfg getFixed()
-
getVegas
public VegasCfg getVegas()
-
getGradient
public GradientCfg getGradient()
-
getGradient2
public Gradient2Cfg getGradient2()
-
-