Object

swaydb.core.util

ReserveRange

Related Doc: package util

Permalink

object ReserveRange extends LazyLogging

Reserves a range of keys for processing by a single thread.

This is used to ensure that multiple threads do not concurrent perform compaction on overlapping keys within the same Level.

Linear Supertypes
LazyLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReserveRange
  2. LazyLogging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Range[T](from: Slice[Byte], to: Slice[Byte], toInclusive: Boolean, reserve: Reserve[T]) extends Product with Serializable

    Permalink
  2. case class State[T](ranges: ListBuffer[Range[T]]) extends Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Range extends Serializable

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def create[T](): State[T]

    Permalink
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def free[T](from: Slice[Byte])(implicit state: State[T], ordering: KeyOrder[Slice[Byte]]): Unit

    Permalink
  12. def get[T](from: Slice[Byte], to: Slice[Byte])(implicit state: State[T], ordering: KeyOrder[Slice[Byte]]): Option[T]

    Permalink
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. def isUnreserved[T](segment: Segment)(implicit state: State[T], ordering: KeyOrder[Slice[Byte]]): Boolean

    Permalink
  17. def isUnreserved[T](from: Slice[Byte], to: Slice[Byte], toInclusive: Boolean)(implicit state: State[T], ordering: KeyOrder[Slice[Byte]]): Boolean

    Permalink
  18. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LazyLogging
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. def reserveOrGet[T](from: Slice[Byte], to: Slice[Byte], toInclusive: Boolean, info: T)(implicit state: State[T], ordering: KeyOrder[Slice[Byte]]): Option[T]

    Permalink
  23. def reserveOrListen[T](from: Slice[Byte], to: Slice[Byte], toInclusive: Boolean, info: T)(implicit state: State[T], ordering: KeyOrder[Slice[Byte]]): IO[Promise[Unit], Slice[Byte]]

    Permalink
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped