Packages

final case class Unbounded(chunkSizeHint: Option[Int] = None) extends BufferCapacity with Product with Serializable

Describes an unbounded buffer that can use the entire memory available.

chunkSizeHint

is an optimization hint — in case the underlying buffer is based on Array chunks, the chunkSizeHint specifies the desired chunk size; this parameter is just a hint and implementations don't guarantee its usage

Source
BufferCapacity.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Unbounded
  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 Unbounded(chunkSizeHint: Option[Int] = None)

    chunkSizeHint

    is an optimization hint — in case the underlying buffer is based on Array chunks, the chunkSizeHint specifies the desired chunk size; this parameter is just a hint and implementations don't guarantee its usage

Value Members

  1. val chunkSizeHint: Option[Int]
  2. def isBounded: Boolean
    Definition Classes
    UnboundedBufferCapacity
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product