Class BusyWait
java.lang.Object
org.apache.bookkeeper.common.collections.BusyWait
Utility class to use "Thread.onSpinWait()" when available.
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidIf available (Java 9+), use intrinsicThread.onSpinWait()which will reduce CPU consumption during the wait, otherwise fallback to regular spinning.
-
Method Details
-
onSpinWait
public static void onSpinWait()If available (Java 9+), use intrinsicThread.onSpinWait()which will reduce CPU consumption during the wait, otherwise fallback to regular spinning.
-