Package org.eclipse.jetty.util
Class Atomics
- java.lang.Object
-
- org.eclipse.jetty.util.Atomics
-
public class Atomics extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanupdateMax(AtomicInteger currentMax, int newValue)static booleanupdateMax(AtomicLong currentMax, long newValue)static booleanupdateMin(AtomicInteger currentMin, int newValue)static booleanupdateMin(AtomicLong currentMin, long newValue)
-
-
-
Method Detail
-
updateMin
public static boolean updateMin(AtomicLong currentMin, long newValue)
-
updateMax
public static boolean updateMax(AtomicLong currentMax, long newValue)
-
updateMin
public static boolean updateMin(AtomicInteger currentMin, int newValue)
-
updateMax
public static boolean updateMax(AtomicInteger currentMax, int newValue)
-
-