p

zio

package zio

Linear Supertypes
DurationModule, VersionSpecific, PlatformSpecific, IntersectionTypeCompat, FunctionToLayerOps, EitherCompat, BuildFromCompat, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. zio
  2. DurationModule
  3. VersionSpecific
  4. PlatformSpecific
  5. IntersectionTypeCompat
  6. FunctionToLayerOps
  7. EitherCompat
  8. BuildFromCompat
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Package Members

  1. package internal
  2. package stm

Type Members

  1. type &[+A, +B] = A with B
    Definition Classes
    IntersectionTypeCompat
  2. abstract class =!=[A, B] extends Serializable

    Evidence type A is not equal to type B.

    Evidence type A is not equal to type B.

    Based on https://github.com/milessabin/shapeless.

  3. trait Accessible[R] extends AnyRef

    A simple, macro-less means of creating accessors from Services.

    A simple, macro-less means of creating accessors from Services. Extend the companion object with Accessible[ServiceName], then simply call Companion(_.someMethod), to return a ZIO effect that requires the Service in its environment.

    Example:

    trait FooService {
      def magicNumber: UIO[Int]
      def castSpell(chant: String): UIO[Boolean]
    }
    
    object FooService extends Accessible[FooService]
    
    val example: ZIO[Has[FooService], Nothing, Unit] =
      for {
        int  <- FooService(_.magicNumber)
        bool <- FooService(_.castSpell("Oogabooga!"))
      } yield ()
  4. trait App extends ZApp[ZEnv] with BootstrapRuntime

    The entry point for a purely-functional application on the JVM.

    The entry point for a purely-functional application on the JVM.

    import zio.App
    import zio.Console._
    
    object MyApp extends App {
    
      final def run(args: List[String]) =
        myAppLogic.exitCode
    
      val myAppLogic =
        for {
          _ <- printLine("Hello! What is your name?")
          n <- readLine
          _ <- printLine("Hello, " + n + ", good to meet you!")
        } yield ()
    }
  5. trait BootstrapRuntime extends ZBootstrapRuntime[ZEnv]
  6. type BuildFrom[-From, -A, +C] = scala.collection.BuildFrom[From, A, C]
    Definition Classes
    BuildFromCompat
  7. sealed abstract class CanFail[-E] extends AnyRef

    A value of type CanFail[E] provides implicit evidence that an effect with error type E can fail, that is, that E is not equal to Nothing.

  8. abstract class CancelableFuture[+A] extends Future[A] with FutureTransformCompat[A]
  9. type Canceler[-R] = ZIO[R, Nothing, Any]
  10. sealed abstract class Cause[+E] extends Product with Serializable
  11. sealed abstract class Chunk[+A] extends ChunkLike[A]

    A Chunk[A] represents a chunk of values of type A.

    A Chunk[A] represents a chunk of values of type A. Chunks are designed are usually backed by arrays, but expose a purely functional, safe interface to the underlying elements, and they become lazy on operations that would be costly with arrays, such as repeated concatenation.

    The implementation of balanced concatenation is based on the one for Conc-Trees in "Conc-Trees for Functional and Parallel Programming" by Aleksandar Prokopec and Martin Odersky. http://aleksandar-prokopec.com/resources/docs/lcpc-conc-trees.pdf

    NOTE: For performance reasons Chunk does not box primitive types. As a result, it is not safe to construct chunks from heterogeneous primitive types.

  12. sealed abstract class ChunkBuilder[A] extends Builder[A, Chunk[A]]

    A ChunkBuilder[A] can build a Chunk[A] given elements of type A.

    A ChunkBuilder[A] can build a Chunk[A] given elements of type A. ChunkBuilder is a mutable data structure that is implemented to efficiently build chunks of unboxed primitives and for compatibility with the Scala collection library.

  13. trait ChunkLike[+A] extends IndexedSeq[A] with IndexedSeqOps[A, Chunk, Chunk[A]] with StrictOptimizedSeqOps[A, Chunk, Chunk[A]] with IterableFactoryDefaults[A, Chunk]

    ChunkLike represents the capability for a Chunk to extend Scala's collection library.

    ChunkLike represents the capability for a Chunk to extend Scala's collection library. Because of changes to Scala's collection library in 2.13, separate versions of this trait are implemented for 2.11 / 2.12 and 2.13 / Dotty. This allows code in Chunk to be written without concern for the implementation details of Scala's collection library to the maximum extent possible.

    Note that IndexedSeq is not a referentially transparent interface in that it exposes methods that are partial (e.g. apply), allocate mutable state (e.g. iterator), or are purely side effecting (e.g. foreach). Chunk extends IndexedSeq to provide interoperability with Scala's collection library but users should avoid these methods whenever possible.

  14. trait Clock extends Serializable
  15. trait Console extends Serializable
  16. type Dequeue[+A] = ZQueue[Nothing, Any, Any, Nothing, Nothing, A]
  17. type Duration = java.time.Duration
    Definition Classes
    DurationModule
  18. trait DurationModule extends AnyRef
  19. final class DurationOps extends AnyVal
  20. final class DurationSyntax extends AnyVal
  21. type ERef[+E, A] = ZRef[Any, Any, E, E, A, A]
  22. type Enqueue[-A] = ZQueue[Any, Nothing, Nothing, Any, A, Any]
  23. sealed abstract class ExecutionStrategy extends AnyRef

    Describes a strategy for evaluating multiple effects, potentially in parallel.

    Describes a strategy for evaluating multiple effects, potentially in parallel. There are three possible execution strategies: Sequential, Parallel, and ParallelN.

  24. sealed abstract class Exit[+E, +A] extends Product with Serializable

    An Exit[E, A] describes the result of executing an IO value.

    An Exit[E, A] describes the result of executing an IO value. The result is either succeeded with a value A, or failed with a Cause[E].

  25. final case class ExitCode(code: Int) extends Product with Serializable
  26. sealed abstract class Fiber[+E, +A] extends AnyRef

    A fiber is a lightweight thread of execution that never consumes more than a whole thread (but may consume much less, depending on contention and asynchronicity).

    A fiber is a lightweight thread of execution that never consumes more than a whole thread (but may consume much less, depending on contention and asynchronicity). Fibers are spawned by forking ZIO effects, which run concurrently with the parent effect.

    Fibers can be joined, yielding their result to other fibers, or interrupted, which terminates the fiber, safely releasing all resources.

    def parallel[A, B](io1: Task[A], io2: Task[B]): Task[(A, B)] =
      for {
        fiber1 <- io1.fork
        fiber2 <- io2.fork
        a      <- fiber1.join
        b      <- fiber2.join
      } yield (a, b)
  27. final case class FiberFailure(cause: Cause[Any]) extends Throwable with Product with Serializable

    Represents a failure in a fiber.

    Represents a failure in a fiber. This could be caused by some non- recoverable error, such as a defect or system error, by some typed error, or by interruption (or combinations of all of the above).

    This class is used to wrap ZIO failures into something that can be thrown, to better integrate with Scala exception handling.

  28. type FiberRef[A] = ZFiberRef[Nothing, Nothing, A, A]
  29. trait FunctionToLayerOps extends AnyRef
  30. implicit final class Function0ToLayerSyntax[A] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  31. implicit final class Function10ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  32. implicit final class Function11ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  33. implicit final class Function12ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  34. implicit final class Function13ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  35. implicit final class Function14ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  36. implicit final class Function15ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  37. implicit final class Function16ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  38. implicit final class Function17ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  39. implicit final class Function18ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  40. implicit final class Function19ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  41. implicit final class Function1ToLayerSyntax[A, B] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  42. implicit final class Function20ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  43. implicit final class Function21ToLayerSyntax[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  44. implicit final class Function2ToLayerSyntax[A, B, C] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  45. implicit final class Function3ToLayerSyntax[A, B, C, D] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  46. implicit final class Function4ToLayerSyntax[A, B, C, D, E] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  47. implicit final class Function5ToLayerSyntax[A, B, C, D, E, F] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  48. implicit final class Function6ToLayerSyntax[A, B, C, D, E, F, G] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  49. implicit final class Function7ToLayerSyntax[A, B, C, D, E, F, G, H] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  50. implicit final class Function8ToLayerSyntax[A, B, C, D, E, F, G, H, I] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  51. implicit final class Function9ToLayerSyntax[A, B, C, D, E, F, G, H, I, J] extends AnyRef
    Definition Classes
    FunctionToLayerOps
  52. final class Has[A] extends Serializable

    The trait Has[A] is used with ZIO environment to express an effect's dependency on a service of type A.

    The trait Has[A] is used with ZIO environment to express an effect's dependency on a service of type A. For example, RIO[Has[Console], Unit] is an effect that requires a Console service.

    Services parameterized on path dependent types are not supported.

  53. type Hub[A] = ZHub[Any, Any, Nothing, Nothing, A, A]
  54. type IO[+E, +A] = ZIO[Any, E, A]
  55. sealed abstract class InterruptStatus extends Serializable with Product

    The InterruptStatus of a fiber determines whether or not it can be interrupted.

    The InterruptStatus of a fiber determines whether or not it can be interrupted. The status can change over time in different regions.

  56. sealed abstract class IsSubtypeOfError[-A, +B] extends (A) => B with Serializable
    Annotations
    @implicitNotFound()
  57. sealed abstract class IsSubtypeOfOutput[-A, +B] extends (A) => B with Serializable
    Annotations
    @implicitNotFound()
  58. type Layer[+E, +ROut] = ZLayer[Any, E, ROut]
  59. type LightTypeTag = izumi.reflect.macrortti.LightTypeTag
    Definition Classes
    VersionSpecific
  60. type Managed[+E, +A] = ZManaged[Any, E, A]
  61. trait ManagedApp extends BootstrapRuntime
  62. sealed abstract class NeedsEnv[+R] extends Serializable

    A value of type NeedsEnv[R] provides implicit evidence that an effect with environment type R needs an environment, that is, that R is not equal to Any.

  63. final class NonEmptyChunk[+A] extends AnyRef

    A NonEmptyChunk is a Chunk that is guaranteed to contain at least one element.

    A NonEmptyChunk is a Chunk that is guaranteed to contain at least one element. As a result, operations which would not be safe when performed on Chunk, such as head or reduce, are safe when performed on NonEmptyChunk. Operations on NonEmptyChunk which could potentially return an empty chunk will return a Chunk instead.

  64. final class Promise[E, A] extends Serializable

    A promise represents an asynchronous variable, of zio.IO type, that can be set exactly once, with the ability for an arbitrary number of fibers to suspend (by calling await) and automatically resume when the variable is set.

    A promise represents an asynchronous variable, of zio.IO type, that can be set exactly once, with the ability for an arbitrary number of fibers to suspend (by calling await) and automatically resume when the variable is set.

    Promises can be used for building primitive actions whose completions require the coordinated action of multiple fibers, and for building higher-level concurrent or asynchronous structures.

    for {
      promise <- Promise.make[Nothing, Int]
      _       <- promise.succeed(42).delay(1.second).fork
      value   <- promise.await // Resumes when forked fiber completes promise
    } yield value
  65. type Queue[A] = ZQueue[Any, Any, Nothing, Nothing, A, A]
  66. type RIO[-R, +A] = ZIO[R, Throwable, A]
  67. type RLayer[-RIn, +ROut] = ZLayer[RIn, Throwable, ROut]
  68. type RManaged[-R, +A] = ZManaged[R, Throwable, A]
  69. trait Random extends Serializable
  70. type Ref[A] = ZRef[Any, Any, Nothing, Nothing, A, A]
  71. final case class Reservation[-R, +E, +A](acquire: ZIO[R, E, A], release: (Exit[Any, Any]) => URIO[R, Any]) extends Product with Serializable

    A Reservation[-R, +E, +A] encapsulates resource acquisition and disposal without specifying when or how that resource might be used.

    A Reservation[-R, +E, +A] encapsulates resource acquisition and disposal without specifying when or how that resource might be used.

    See ZManaged#reserve and ZIO#reserve for details of usage.

  72. trait Runtime[+R] extends AnyRef

    A Runtime[R] is capable of executing tasks within an environment R.

  73. trait Schedule[-Env, -In, +Out] extends Serializable
  74. type Semaphore = TSemaphore
  75. abstract class Supervisor[+A] extends AnyRef

    A Supervisor[A] is allowed to supervise the launching and termination of fibers, producing some visible value of type A from the supervision.

  76. trait System extends Serializable
  77. type Tag[A] = izumi.reflect.Tag[A]
    Definition Classes
    VersionSpecific
  78. type TagK[F[_]] = HKTag[AnyRef { type Arg[A] = F[A] }]
    Definition Classes
    VersionSpecific
  79. type TagK10[F[_, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9] }]
    Definition Classes
    VersionSpecific
  80. type TagK11[F[_, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10] }]
    Definition Classes
    VersionSpecific
  81. type TagK12[F[_, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11] }]
    Definition Classes
    VersionSpecific
  82. type TagK13[F[_, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12] }]
    Definition Classes
    VersionSpecific
  83. type TagK14[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13] }]
    Definition Classes
    VersionSpecific
  84. type TagK15[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14] }]
    Definition Classes
    VersionSpecific
  85. type TagK16[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,A15] }]
    Definition Classes
    VersionSpecific
  86. type TagK17[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,A15,A16] }]
    Definition Classes
    VersionSpecific
  87. type TagK18[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,A15,A16,A17] }]
    Definition Classes
    VersionSpecific
  88. type TagK19[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,A15,A16,A17,A18] }]
    Definition Classes
    VersionSpecific
  89. type TagK20[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,A15,A16,A17,A18,A19] }]
    Definition Classes
    VersionSpecific
  90. type TagK21[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,A15,A16,A17,A18,A19,A20] }]
    Definition Classes
    VersionSpecific
  91. type TagK22[F[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,A15,A16,A17,A18,A19,A20,A21] }]
    Definition Classes
    VersionSpecific
  92. type TagK3[F[_, _, _]] = HKTag[AnyRef { type Arg[A, B, C] = F[A,B,C] }]
    Definition Classes
    VersionSpecific
  93. type TagK4[F[_, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3] = F[A0,A1,A2,A3] }]
    Definition Classes
    VersionSpecific
  94. type TagK5[F[_, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4] = F[A0,A1,A2,A3,A4] }]
    Definition Classes
    VersionSpecific
  95. type TagK6[F[_, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5] = F[A0,A1,A2,A3,A4,A5] }]
    Definition Classes
    VersionSpecific
  96. type TagK7[F[_, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6] = F[A0,A1,A2,A3,A4,A5,A6] }]
    Definition Classes
    VersionSpecific
  97. type TagK8[F[_, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7] = F[A0,A1,A2,A3,A4,A5,A6,A7] }]
    Definition Classes
    VersionSpecific
  98. type TagK9[F[_, _, _, _, _, _, _, _, _]] = HKTag[AnyRef { type Arg[A0, A1, A2, A3, A4, A5, A6, A7, A8] = F[A0,A1,A2,A3,A4,A5,A6,A7,A8] }]
    Definition Classes
    VersionSpecific
  99. type TagKK[F[_, _]] = HKTag[AnyRef { type Arg[A, B] = F[A,B] }]
    Definition Classes
    VersionSpecific
  100. type Task[+A] = ZIO[Any, Throwable, A]
  101. type TaskLayer[+ROut] = ZLayer[Any, Throwable, ROut]
  102. type TaskManaged[+A] = ZManaged[Any, Throwable, A]
  103. sealed abstract class TracingStatus extends Serializable with Product

    Whether ZIO Tracing is enabled for the current fiber in the current region.

  104. type UIO[+A] = ZIO[Any, Nothing, A]
  105. type ULayer[+ROut] = ZLayer[Any, Nothing, ROut]
  106. type UManaged[+A] = ZManaged[Any, Nothing, A]
  107. type URIO[-R, +A] = ZIO[R, Nothing, A]
  108. type URLayer[-RIn, +ROut] = ZLayer[RIn, Nothing, ROut]
  109. type URManaged[-R, +A] = ZManaged[R, Nothing, A]
  110. trait Unzippable[A, B] extends AnyRef
  111. trait UnzippableLowPriority1 extends UnzippableLowPriority2
  112. trait UnzippableLowPriority2 extends UnzippableLowPriority3
  113. trait UnzippableLowPriority3 extends AnyRef
  114. trait ZApp[R] extends ZBootstrapRuntime[R]

    The entry point for a purely-functional application on the JVM.

    The entry point for a purely-functional application on the JVM.

    import zio.ZApp
    import zio.Console._
    
    object MyApp extends ZApp[Has[Console]] {
    
      def environment: Has[Console] = Has(ConsoleLive)
    
      final def run(args: List[String]) =
        myAppLogic.exitCode
    
      def myAppLogic =
        for {
          _ <- printLine("Hello! What is your name?")
          n <- readLine
          _ <- printLine("Hello, " + n + ", good to meet you!")
        } yield ()
    }
  115. trait ZBootstrapRuntime[R] extends Runtime[R]
  116. type ZDequeue[-R, +E, +A] = ZQueue[Nothing, R, Any, E, Nothing, A]

    A queue that can only be dequeued.

  117. type ZEnqueue[-R, +E, -A] = ZQueue[R, Nothing, E, Any, A, Any]

    A queue that can only be enqueued.

  118. type ZEnv = Has[Clock] with Has[Console] with Has[System] with Has[Random]
    Definition Classes
    PlatformSpecific
  119. sealed abstract class ZFiberRef[+EA, +EB, -A, +B] extends Serializable

    A FiberRef is ZIO's equivalent of Java's ThreadLocal.

    A FiberRef is ZIO's equivalent of Java's ThreadLocal. The value of a FiberRef is automatically propagated to child fibers when they are forked and merged back in to the value of the parent fiber after they are joined.

    for {
      fiberRef <- FiberRef.make("Hello world!")
      child    <- fiberRef.set("Hi!).fork
      result   <- child.join
    } yield result

    Here result will be equal to "Hi!" since changed made by a child fiber are merged back in to the value of the parent fiber on join.

    By default the value of the child fiber will replace the value of the parent fiber on join but you can specify your own logic for how values should be merged.

    for {
      fiberRef <- FiberRef.make(0, math.max)
      child    <- fiberRef.update(_ + 1).fork
      _        <- fiberRef.update(_ + 2)
      _        <- child.join
      value    <- fiberRef.get
    } yield value

    Here value will be 2 as the value in the joined fiber is lower and we specified max as our combining function.

  120. sealed abstract class ZHub[-RA, -RB, +EA, +EB, -A, +B] extends Serializable

    A ZHub[RA, RB, EA, EB, A, B] is an asynchronous message hub.

    A ZHub[RA, RB, EA, EB, A, B] is an asynchronous message hub. Publishers can publish messages of type A to the hub and subscribers can subscribe to take messages of type B from the hub. Publishing messages can require an environment of type RA and fail with an error of type EA. Taking messages can require an environment of type RB and fail with an error of type EB.

  121. sealed trait ZIO[-R, +E, +A] extends Serializable with ZIOPlatformSpecific[R, E, A] with ZIOVersionSpecific[R, E, A]

    A ZIO[R, E, A] value is an immutable value that lazily describes a workflow or job.

    A ZIO[R, E, A] value is an immutable value that lazily describes a workflow or job. The workflow requires some environment R, and may fail with an error of type E, or succeed with a value of type A.

    These lazy workflows, referred to as _effects_, can be informally thought of as functions in the form:

    R => Either[E, A]

    ZIO effects model resourceful interaction with the outside world, including synchronous, asynchronous, concurrent, and parallel interaction.

    ZIO effects use a fiber-based concurrency model, with built-in support for scheduling, fine-grained interruption, structured concurrency, and high scalability.

    To run an effect, you need a Runtime, which is capable of executing effects. Runtimes bundle a thread pool together with the environment that effects need.

  122. trait ZIOAspect[+LowerR, -UpperR, +LowerE, -UpperE, +LowerA, -UpperA] extends AnyRef
  123. abstract class ZInputStream extends AnyRef
  124. sealed abstract class ZLayer[-RIn, +E, +ROut] extends AnyRef

    A ZLayer[A, E, B] describes a layer of an application: every layer in an application requires some services (the input) and produces some services (the output).

    A ZLayer[A, E, B] describes a layer of an application: every layer in an application requires some services (the input) and produces some services (the output).

    Layers can be thought of as recipes for producing bundles of services, given their dependencies (other services).

    Construction of layers can be effectful and utilize resources that must be acquired and safely released when the services are done being utilized.

    By default layers are shared, meaning that if the same layer is used twice the layer will only be allocated a single time.

    Because of their excellent composition properties, layers are the idiomatic way in ZIO to create services that depend on other services.

  125. sealed abstract class ZManaged[-R, +E, +A] extends ZManagedVersionSpecific[R, E, A] with Serializable

    A ZManaged[R, E, A] is a managed resource of type A, which may be used by invoking the use method of the resource.

    A ZManaged[R, E, A] is a managed resource of type A, which may be used by invoking the use method of the resource. The resource will be automatically acquired before the resource is used, and automatically released after the resource is used.

    Resources do not survive the scope of use, meaning that if you attempt to capture the resource, leak it from use, and then use it after the resource has been consumed, the resource will not be valid anymore and may fail with some checked error, as per the type of the functions provided by the resource.

  126. trait ZManagedAspect[+LowerR, -UpperR, +LowerE, -UpperE, +LowerA, -UpperA] extends AnyRef
  127. abstract class ZOutputStream extends AnyRef
  128. abstract class ZQueue[-RA, -RB, +EA, +EB, -A, +B] extends Serializable

    A ZQueue[RA, RB, EA, EB, A, B] is a lightweight, asynchronous queue into which values of type A can be enqueued and of which elements of type B can be dequeued.

    A ZQueue[RA, RB, EA, EB, A, B] is a lightweight, asynchronous queue into which values of type A can be enqueued and of which elements of type B can be dequeued. The queue's enqueueing operations may utilize an environment of type RA and may fail with errors of type EA. The dequeueing operations may utilize an environment of type RB and may fail with errors of type EB.

  129. sealed abstract class ZRef[-RA, -RB, +EA, +EB, -A, +B] extends Serializable

    A ZRef[RA, RB, EA, EB, A, B] is a polymorphic, purely functional description of a mutable reference.

    A ZRef[RA, RB, EA, EB, A, B] is a polymorphic, purely functional description of a mutable reference. The fundamental operations of a ZRef are set and get. set takes a value of type A and sets the reference to a new value, requiring an environment of type RA and potentially failing with an error of type EA. get gets the current value of the reference and returns a value of type B, requiring an environment of type RB and potentially failing with an error of type EB.

    When the error and value types of the ZRef are unified, that is, it is a ZRef[R, R, E, E, A, A], the ZRef also supports atomic modify and update operations. All operations are guaranteed to be safe for concurrent access.

    By default, ZRef is implemented in terms of compare and swap operations for maximum performance and does not support performing effects within update operations. If you need to perform effects within update operations you can create a ZRef.Synchronized, a specialized type of ZRef that supports performing effects within update operations at some cost to performance. In this case writes will semantically block other writers, while multiple readers can read simultaneously.

    ZRef.Synchronized also supports composing multiple ZRef.Synchronized values together to form a single ZRef.Synchronized value that can be atomically updated using the zip operator. In this case reads and writes will semantically block other readers and writers.

    NOTE: While ZRef provides the functional equivalent of a mutable reference, the value inside the ZRef should normally be immutable since compare and swap operations are not safe for mutable values that do not support concurrent access. If you do need to use a mutable value ZRef.Synchronized will guarantee that access to the value is properly synchronized.

  130. sealed abstract class ZScope[+A] extends AnyRef

    A ZScope[A] is a value that allows adding finalizers identified by a key.

    A ZScope[A] is a value that allows adding finalizers identified by a key. Scopes are closed with a value of type A, which is provided to all the finalizers when the scope is released.

    For safety reasons, this interface has no method to close a scope. Rather, an open scope may be required with ZScope.make, which returns a function that can close a scope. This allows scopes to be safely passed around without fear they will be accidentally closed.

  131. sealed trait ZState[S] extends AnyRef

    ZState[S] models a value of type S that can be read from and written to during the execution of an effect.

    ZState[S] models a value of type S that can be read from and written to during the execution of an effect. The idiomatic way to work with ZState is as part of the environment using operators defined on ZIO. For example:

    final case class MyState(counter: Int)
    
    for {
      _     <- ZIO.updateState[MyState](state => state.copy(counter = state.counter + 1))
      count <- ZIO.getStateWith[MyState](_.counter)
    } yield count

    Because ZState is typically used as part of the environment, it is recommended to define your own state type S such as MyState above rather than using a type such as Int to avoid the risk of ambiguity.

    To run an effect that depends on some state, create the initial state with the make constructor and then use toLayer to convert it into a layer that you can provide along with your application's other dependencies.

  132. final case class ZTrace(fiberId: Id, executionTrace: List[ZTraceElement], stackTrace: List[ZTraceElement], parentTrace: Option[ZTrace]) extends Product with Serializable
  133. trait Zippable[-A, -B] extends AnyRef
  134. trait ZippableLowPriority1 extends ZippableLowPriority2
  135. trait ZippableLowPriority2 extends ZippableLowPriority3
  136. trait ZippableLowPriority3 extends AnyRef

Deprecated Type Members

  1. type ERefM[+E, A] = Synchronized[Any, Any, E, E, A, A]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use ERef.Synchronized

  2. type RefM[A] = Synchronized[Any, Any, Nothing, Nothing, A, A]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use Ref.Synchronized

  3. type ZRefM[-RA, -RB, +EA, +EB, -A, +B] = Synchronized[RA, RB, EA, EB, A, B]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use ZRef.Synchronized

Value Members

  1. val ERef: ZRef.type
  2. val FiberRef: ZFiberRef.type
  3. val Hub: ZHub.type
  4. val Managed: ZManaged.type
  5. val Queue: ZQueue.type
  6. lazy val Tag: izumi.reflect.Tag.type
    Definition Classes
    VersionSpecific
  7. lazy val TagK: izumi.reflect.TagK.type
    Definition Classes
    VersionSpecific
  8. lazy val TagK3: izumi.reflect.TagK3.type
    Definition Classes
    VersionSpecific
  9. lazy val TagKK: izumi.reflect.TagKK.type
    Definition Classes
    VersionSpecific
  10. implicit def buildFromNothing[A, Collection[+Element] <: Iterable[Element] with IterableOps[A, Collection, _]]: BuildFrom[Collection[A], Nothing, Collection[Nothing]]
    Definition Classes
    BuildFromCompat
  11. implicit def duration2DurationOps(duration: Duration): DurationOps
    Definition Classes
    DurationModule
  12. implicit def durationInt(n: Int): DurationSyntax
    Definition Classes
    DurationModule
  13. implicit def durationLong(n: Long): DurationSyntax
    Definition Classes
    DurationModule
  14. implicit val durationOrdering: Ordering[Duration]
    Definition Classes
    DurationModule
  15. object =!= extends Serializable
  16. object Accessible
  17. case object BuildInfo extends Product with Serializable

    This object was generated by sbt-buildinfo.

  18. object CanFail extends CanFail[Any]
  19. object Cause extends Serializable
  20. object Chunk extends ChunkFactory with ChunkPlatformSpecific
  21. object ChunkBuilder
  22. object ChunkLike extends SeqFactory[Chunk]
  23. object Clock extends ClockPlatformSpecific with Serializable
  24. object Console extends Serializable
  25. object Duration
  26. object ExecutionStrategy
  27. object Exit extends Serializable
  28. object ExitCode extends Serializable
  29. object Fiber extends FiberPlatformSpecific
  30. object Has extends Serializable
  31. object IO
  32. object InterruptStatus extends Serializable
  33. object IsSubtypeOfError extends Serializable
  34. object IsSubtypeOfOutput extends Serializable
  35. object NeedsEnv extends NeedsEnv[Nothing]
  36. object NonEmptyChunk
  37. object Promise extends Serializable
  38. object RIO
  39. object Random extends Serializable
  40. object Ref extends Serializable
  41. object Runtime
  42. object Schedule extends Serializable
  43. object Semaphore
  44. object Supervisor
  45. object System extends Serializable
  46. object Task extends TaskPlatformSpecific
  47. object TracingStatus extends Serializable
  48. object UIO
  49. object URIO
  50. object Unzippable extends UnzippableLowPriority1
  51. object ZEnv
    Definition Classes
    PlatformSpecific
  52. object ZFiberRef extends Serializable
  53. object ZHub extends Serializable
  54. object ZIO extends ZIOCompanionPlatformSpecific with Serializable
  55. object ZIOAspect
  56. object ZInputStream
  57. object ZLayer extends ZLayerCompanionVersionSpecific
  58. object ZManaged extends ZManagedPlatformSpecific with Serializable
  59. object ZOutputStream
  60. object ZQueue extends Serializable
  61. object ZRef extends Serializable
  62. object ZScope
  63. object ZState
  64. object ZTrace extends Serializable
  65. object Zippable extends ZippableLowPriority1

Deprecated Value Members

  1. def buildFromAny[Element, Collection[+Element] <: Iterable[Element] with IterableOps[Any, Collection, Any]]: BuildFrom[Collection[Any], Element, Collection[Element]]
    Definition Classes
    BuildFromCompat
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.6) Use BuildFrom.buildFromIterableOps or buildFromNothing instead

  2. object RefM
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use Ref.Synchronized

  3. object ZRefM
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use ZRef.Synchronized

Inherited from DurationModule

Inherited from VersionSpecific

Inherited from PlatformSpecific

Inherited from IntersectionTypeCompat

Inherited from FunctionToLayerOps

Inherited from EitherCompat

Inherited from BuildFromCompat

Inherited from AnyRef

Inherited from Any

Ungrouped