Packages

final case class Bounded(capacity: Int) extends BufferCapacity with Product with Serializable

Describes a buffer with a limited capacity.

The overflow strategy depends on the implementation, the capacity parameter describing just the size of the memory used.

Also note that depending on the implementation this capacity can get rounded to a power of 2 for optimization purposes, so it's not necessarily a precise measurement of how many elements can be stored.

Source
BufferCapacity.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Bounded
  2. BufferCapacity
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Bounded(capacity: Int)

Value Members

  1. val capacity: Int
  2. def isBounded: Boolean
    Definition Classes
    BoundedBufferCapacity
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product