package interop
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- interop
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- type Future[+A] = Fiber[Throwable, A]
A scala.concurrent.Future is a running computation, and corresponds most closely to ZIO
Fiber. - implicit final class FutureSyntax[T] extends AnyVal
Value Members
- object Future
An API-compatible implementation of scala.concurrent.Future, which is backed by ZIO.
An API-compatible implementation of scala.concurrent.Future, which is backed by ZIO. While this structure is not performant, due to emulation of the
FutureAPI, it can be useful to help migrate legacy code away fromFutureand to ZIO.