Class DecayingBooleanImpl
- java.lang.Object
-
- com.atlassian.bamboo.utils.concurrent.DecayingBooleanImpl
-
- All Implemented Interfaces:
DecayingBoolean
public class DecayingBooleanImpl extends Object implements DecayingBoolean
A boolean that decays to its initial state after a defined period passed since the last use.
-
-
Constructor Summary
Constructors Constructor Description DecayingBooleanImpl(boolean initialValue, boolean decayValue, Duration ttl)
DecayingBooleanImpl(boolean initialValue, Duration ttl)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
compareAndSet(boolean expect, boolean update)
boolean
get()
DecayingBooleanImpl
onDecay(Runnable runnable)
void
set(boolean b)
-
-
-
Method Detail
-
get
public boolean get()
- Specified by:
get
in interfaceDecayingBoolean
-
compareAndSet
public boolean compareAndSet(boolean expect, boolean update)
- Specified by:
compareAndSet
in interfaceDecayingBoolean
-
set
public void set(boolean b)
- Specified by:
set
in interfaceDecayingBoolean
-
onDecay
public DecayingBooleanImpl onDecay(Runnable runnable)
- Specified by:
onDecay
in interfaceDecayingBoolean
-
-