Uses of Class
com.lmax.disruptor.PhasedBackoffWaitStrategy
-
Packages that use PhasedBackoffWaitStrategy Package Description com.lmax.disruptor The Disruptor is a concurrent programming framework for exchanging and coordinating work as a continuous series of events. -
-
Uses of PhasedBackoffWaitStrategy in com.lmax.disruptor
Methods in com.lmax.disruptor that return PhasedBackoffWaitStrategy Modifier and Type Method Description static PhasedBackoffWaitStrategy
PhasedBackoffWaitStrategy. withLiteLock(long spinTimeout, long yieldTimeout, TimeUnit units)
Block with wait/notifyAll semanticsstatic PhasedBackoffWaitStrategy
PhasedBackoffWaitStrategy. withLock(long spinTimeout, long yieldTimeout, TimeUnit units)
Block with wait/notifyAll semanticsstatic PhasedBackoffWaitStrategy
PhasedBackoffWaitStrategy. withSleep(long spinTimeout, long yieldTimeout, TimeUnit units)
Block by sleeping in a loop
-