Enum Class DisruptorWaitStrategy
- All Implemented Interfaces:
Serializable,Comparable<DisruptorWaitStrategy>,Constable
This enumeration holds all values that may be used as the
WaitStrategy used by producers on a Disruptor.
Blocking is the default WaitStrategy.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBlocking strategy that uses a lock and condition variable forEventProcessors waiting on a barrier.Busy Spin strategy that uses a busy spin loop forEventProcessors waiting on a barrier.Sleeping strategy that initially spins, then uses a Thread.yield(), and eventually for the minimum number of nanos the OS and JVM will allow while theEventProcessors are waiting on a barrier.Yielding strategy that uses a Thread.yield() forEventProcessors waiting on a barrier after an initially spinning. -
Method Summary
Modifier and TypeMethodDescriptioncom.lmax.disruptor.WaitStrategyClass<? extends com.lmax.disruptor.WaitStrategy> static DisruptorWaitStrategyReturns the enum constant of this class with the specified name.static DisruptorWaitStrategy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Blocking
Blocking strategy that uses a lock and condition variable forEventProcessors waiting on a barrier. This strategy can be used when throughput and low-latency are not as important as CPU resource. -
Sleeping
Sleeping strategy that initially spins, then uses a Thread.yield(), and eventually for the minimum number of nanos the OS and JVM will allow while theEventProcessors are waiting on a barrier. This strategy is a good compromise between performance and CPU resource. Latency spikes can occur after quiet periods. -
BusySpin
Busy Spin strategy that uses a busy spin loop forEventProcessors waiting on a barrier. This strategy will use CPU resource to avoid syscalls which can introduce latency jitter. It is best used when threads can be bound to specific CPU cores. -
Yielding
Yielding strategy that uses a Thread.yield() forEventProcessors waiting on a barrier after an initially spinning. This strategy is a good compromise between performance and CPU resource without incurring significant latency spikes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getWaitStrategyClass
-
createWaitStrategyInstance
- Throws:
Exception
-