implicit final class ZIOObjOps extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ZIOObjOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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 fromMonixTask[A](monixTask: monix.eval.Task[A], executionModel: ExecutionModel = ExecutionModel.Default): Task[A]
Converts a Monix task into a ZIO task.
Converts a Monix task into a ZIO task.
Interrupting the returned effect will cancel the underlying Monix task. The conversion is lazy: the Monix task is only executed if the returned ZIO task is executed.
If the returned ZIO task is interrupted, the underlying Monix task will be cancelled.
- monixTask
The Monix task.
- executionModel
The Monix execution model to use for the Monix execution. This only need be specified if you want to override the Monix default.
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any