sealed trait Patch extends (FiberId.Runtime, FiberRefs) => FiberRefs
A Patch
captures the changes in FiberRef
values made by a single fiber
as a value. This allows fibers to apply the changes made by a workflow
without inheriting all the FiberRef
values of the fiber that executed the
workflow.
- Self Type
- Patch
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Patch
- Function2
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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 apply(fiberId: FiberId.Runtime, fiberRefs: FiberRefs): FiberRefs
Applies the changes described by this patch to the specified collection of
FiberRef
values.Applies the changes described by this patch to the specified collection of
FiberRef
values.- Definition Classes
- Patch → Function2
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def combine(that: Patch): Patch
Combines this patch and the specified patch to create a new patch that describes applying the changes from this patch and the specified patch sequentially.
- def curried: (FiberId.Runtime) => (FiberRefs) => FiberRefs
- Definition Classes
- Function2
- Annotations
- @unspecialized()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- Function2 → AnyRef → Any
- def tupled: ((FiberId.Runtime, FiberRefs)) => FiberRefs
- Definition Classes
- Function2
- Annotations
- @unspecialized()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()