final case class InterruptAction[F[_, _]](interrupt: F[Nothing, Unit]) extends AnyVal with Product with Serializable
- interrupt
May *semantically* block until the target computation either finishes completely or finishes running its finalizers, depending on the underlying effect type. Will not block if the effect type does not support semantic (async) blocking.
- Alphabetic
- By Inheritance
- InterruptAction
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new InterruptAction(interrupt: F[Nothing, Unit])
- interrupt
May *semantically* block until the target computation either finishes completely or finishes running its finalizers, depending on the underlying effect type. Will not block if the effect type does not support semantic (async) blocking.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- val interrupt: F[Nothing, Unit]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def productElementNames: Iterator[String]
- Definition Classes
- Product