Packages

sealed abstract class PaddingStrategy extends AnyRef

For applying padding to atomic references, in order to reduce cache contention. JEP 142 should reduce the need for this along with the @Contended annotation, however that might have security restrictions, the runtime might not act on it since it's just a recommendation, plus it's nice to provide backwards compatibility.

See: http://mail.openjdk.java.net/pipermail/hotspot-dev/2012-November/007309.html

The default strategy is NoPadding. In order to apply padding:

import monix.execution.atomic.Atomic
import monix.execution.atomic.PaddingStrategy.Right64

val paddedAtomic = Atomic.withPadding(10, Right64)
Source
PaddingStrategy.scala
See also

PaddingStrategy.NoPadding

PaddingStrategy.Left64

PaddingStrategy.Right64

PaddingStrategy.LeftRight128

PaddingStrategy.Left128

PaddingStrategy.Right128

PaddingStrategy.LeftRight256

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PaddingStrategy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All