final case class WithKillSwitch[+A](value: A)(killSwitch: KillSwitch) extends WithGeneric[A, KillSwitch, WithKillSwitch] with Product with Serializable
Container class for adding a org.apache.pekko.stream.KillSwitch to a single value. Two containers are equal if their contained values are equal.
(Equality ignores the org.apache.pekko.stream.KillSwitches because it is usually not very meaningful. The org.apache.pekko.stream.KillSwitch is therefore in the second argument list.)
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- WithKillSwitch
- Serializable
- Product
- Equals
- WithGeneric
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new WithKillSwitch(value: A)(killSwitch: KillSwitch)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def added: KillSwitch
- Attributes
- protected
- Definition Classes
- WithKillSwitch → WithGeneric
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val killSwitch: KillSwitch
- def map[AA](f: (A) => AA): WithKillSwitch[AA]
- Definition Classes
- WithGeneric
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def traverse[F[_], AA](f: (A) => F[AA])(implicit F: Functor[F]): F[WithKillSwitch[AA]]
- Definition Classes
- WithGeneric
- def update[AA](newValue: AA): WithKillSwitch[AA]
- Attributes
- protected
- Definition Classes
- WithKillSwitch → WithGeneric
- val value: A
- Definition Classes
- WithKillSwitch → WithGeneric
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])