Packages

final case class BackPressure(bufferSize: Int) extends OverflowStrategy[Nothing] with Product with Serializable

A OverflowStrategy specifying that on reaching the maximum size, the pipeline should try to apply back-pressure (i.e. it should try delaying the data source in producing more elements, until the the consumer has drained the buffer and space is available).

bufferSize

specifies how many events our buffer can hold before overflowing

Source
OverflowStrategy.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BackPressure
  2. Product
  3. Equals
  4. OverflowStrategy
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BackPressure(bufferSize: Int)

    bufferSize

    specifies how many events our buffer can hold before overflowing

Value Members

  1. val bufferSize: Int
  2. val isEvicted: Boolean
    Definition Classes
    OverflowStrategy
  3. val isSynchronous: Boolean
    Definition Classes
    OverflowStrategy
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product