object ZQuery
- Alphabetic
- By Inheritance
- ZQuery
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final class Acquire[-R, +E, +A] extends AnyVal
- final class AcquireExit[-R, +E, +A] extends AnyVal
- final class EnvironmentWithPartiallyApplied[R] extends AnyVal
- final class EnvironmentWithQueryPartiallyApplied[R] extends AnyVal
- final class EnvironmentWithZIOPartiallyApplied[R] extends AnyVal
- final class ProvideSomeLayer[R0, -R, +E, +A] extends AnyVal
- final class Release[-R, +E, +A] extends AnyRef
- final class ReleaseExit[-R, +E, E1, +A, B] extends AnyRef
- final class ServiceWithPartiallyApplied[R] extends AnyVal
- final class ServiceWithQueryPartiallyApplied[Service] extends AnyVal
- final class ServiceWithZIOPartiallyApplied[Service] extends AnyVal
- final class TimeoutTo[-R, +E, +A, +B] extends AnyRef
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 absolve[R, E, A](v: => ZQuery[R, E, Either[E, A]])(implicit trace: Trace): ZQuery[R, E, A]
- def acquireReleaseExitWith[R, E, A](acquire: => ZIO[R, E, A]): AcquireExit[R, E, A]
Acquires the specified resource before the query begins execution and releases it after the query completes execution, whether by success, failure, or interruption.
- def acquireReleaseWith[R, E, A](acquire: => ZIO[R, E, A]): Acquire[R, E, A]
Acquires the specified resource before the query begins execution and releases it after the query completes execution, whether by success, failure, or interruption.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val cachingEnabled: FiberRef[Boolean]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def collectAll[R, E, A](as: NonEmptyChunk[ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, NonEmptyChunk[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed sequentially and will be pipelined.
- def collectAll[R, E, A](as: Option[ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, Option[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed sequentially and will be pipelined.
- def collectAll[R, E, A](as: Array[ZQuery[R, E, A]])(implicit arg0: ClassTag[A], trace: Trace): ZQuery[R, E, Array[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed sequentially and will be pipelined.
- def collectAll[R, E, A](as: Set[ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, Set[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed sequentially and will be pipelined.
- def collectAll[R, E, A, Collection[+Element] <: Iterable[Element]](as: Collection[ZQuery[R, E, A]])(implicit bf: zio.BuildFrom[Collection[ZQuery[R, E, A]], A, Collection[A]], trace: Trace): ZQuery[R, E, Collection[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed sequentially and will be pipelined.
- def collectAllBatched[R, E, A](as: NonEmptyChunk[ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, NonEmptyChunk[A]]
Collects a collection of queries into a query returning a collection of their results, batching requests to data sources.
- def collectAllBatched[R, E, A](as: Array[ZQuery[R, E, A]])(implicit arg0: ClassTag[A], trace: Trace): ZQuery[R, E, Array[A]]
Collects a collection of queries into a query returning a collection of their results, batching requests to data sources.
- def collectAllBatched[R, E, A](as: Set[ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, Set[A]]
Collects a collection of queries into a query returning a collection of their results, batching requests to data sources.
- def collectAllBatched[R, E, A, Collection[+Element] <: Iterable[Element]](as: Collection[ZQuery[R, E, A]])(implicit bf: zio.BuildFrom[Collection[ZQuery[R, E, A]], A, Collection[A]], trace: Trace): ZQuery[R, E, Collection[A]]
Collects a collection of queries into a query returning a collection of their results, batching requests to data sources.
- def collectAllPar[R, E, A](as: NonEmptyChunk[ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, NonEmptyChunk[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
- def collectAllPar[R, E, A](as: Array[ZQuery[R, E, A]])(implicit arg0: ClassTag[A], trace: Trace): ZQuery[R, E, Array[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
- def collectAllPar[R, E, A](as: Set[ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, Set[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
- def collectAllPar[R, E, A, Collection[+Element] <: Iterable[Element]](as: Collection[ZQuery[R, E, A]])(implicit bf: zio.BuildFrom[Collection[ZQuery[R, E, A]], A, Collection[A]], trace: Trace): ZQuery[R, E, Collection[A]]
Collects a collection of queries into a query returning a collection of their results.
Collects a collection of queries into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
- val currentCache: FiberRef[Cache]
- val currentScope: FiberRef[Scope]
- def die(t: => Throwable)(implicit trace: Trace): ZQuery[Any, Nothing, Nothing]
Constructs a query that dies with the specified error.
- def environment[R](implicit trace: Trace): ZQuery[R, Nothing, ZEnvironment[R]]
Accesses the whole environment of the query.
- def environmentWith[R]: EnvironmentWithPartiallyApplied[R]
Accesses the environment of the effect.
Accesses the environment of the effect.
val portNumber = effect.access(_.config.portNumber) - def environmentWithQuery[R]: EnvironmentWithQueryPartiallyApplied[R]
Effectfully accesses the environment of the effect.
- def environmentWithZIO[R]: EnvironmentWithZIOPartiallyApplied[R]
Effectfully accesses the environment of the effect.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fail[E](error: => E)(implicit trace: Trace): ZQuery[Any, E, Nothing]
Lazily constructs a query that fails with the specified error.
- def failCause[E](cause: => Cause[E])(implicit trace: Trace): ZQuery[Any, E, Nothing]
Lazily constructs a query that fails with the specified cause.
- def failCauseNow[E](cause: Cause[E]): ZQuery[Any, E, Nothing]
Eagerly constructs a query that fails with the specified cause.
- def failNow[E](error: E): ZQuery[Any, E, Nothing]
Eagerly constructs a query that fails with the specified error.
- def foreach[R, E, A, B](in: NonEmptyChunk[A])(f: (A) => ZQuery[R, E, B])(implicit trace: Trace): ZQuery[R, E, NonEmptyChunk[B]]
Applies the function
fto each element of theNonEmptyChunk[A]and returns the results in a newNonEmptyChunk[B].Applies the function
fto each element of theNonEmptyChunk[A]and returns the results in a newNonEmptyChunk[B].For a parallel version of this method, see
foreachPar. If you do not need the results, seeforeach_for a more efficient implementation. - def foreach[R, E, A, B](in: Option[A])(f: (A) => ZQuery[R, E, B])(implicit trace: Trace): ZQuery[R, E, Option[B]]
Applies the function
fif the argument is non-empty and returns the results in a newOption[B]. - def foreach[R, E, Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => ZQuery[R, E, (Key2, Value2)])(implicit trace: Trace): ZQuery[R, E, Map[Key2, Value2]]
Applies the function
fto each element of theMap[Key, Value]and returns the results in a newMap[Key2, Value2].Applies the function
fto each element of theMap[Key, Value]and returns the results in a newMap[Key2, Value2].For a parallel version of this method, see
foreachPar. If you do not need the results, seeforeach_for a more efficient implementation. - def foreach[R, E, A, B](in: Array[A])(f: (A) => ZQuery[R, E, B])(implicit arg0: ClassTag[B], trace: Trace): ZQuery[R, E, Array[B]]
Applies the function
fto each element of theArray[A]and returns the results in a newArray[B].Applies the function
fto each element of theArray[A]and returns the results in a newArray[B].For a parallel version of this method, see
foreachPar. If you do not need the results, seeforeach_for a more efficient implementation. - def foreach[R, E, A, B](in: Set[A])(f: (A) => ZQuery[R, E, B])(implicit trace: Trace): ZQuery[R, E, Set[B]]
Applies the function
fto each element of theSet[A]and returns the results in a newSet[B].Applies the function
fto each element of theSet[A]and returns the results in a newSet[B].For a parallel version of this method, see
foreachPar. If you do not need the results, seeforeach_for a more efficient implementation. - def foreach[R, E, A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => ZQuery[R, E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: Trace): ZQuery[R, E, Collection[B]]
Performs a query for each element in a collection, collecting the results into a query returning a collection of their results.
Performs a query for each element in a collection, collecting the results into a query returning a collection of their results. Requests will be executed sequentially and will be pipelined.
- def foreachBatched[R, E, A, B](as: NonEmptyChunk[A])(f: (A) => ZQuery[R, E, B])(implicit trace: Trace): ZQuery[R, E, NonEmptyChunk[B]]
Performs a query for each element in a NonEmptyChunk, batching requests to data sources and collecting the results into a query returning a collection of their results.
Performs a query for each element in a NonEmptyChunk, batching requests to data sources and collecting the results into a query returning a collection of their results.
For a sequential version of this method, see
foreach. - def foreachBatched[R, E, Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => ZQuery[R, E, (Key2, Value2)])(implicit trace: Trace): ZQuery[R, E, Map[Key2, Value2]]
Performs a query for each element in a Map, batching requests to data sources and collecting the results into a query returning a collection of their results.
Performs a query for each element in a Map, batching requests to data sources and collecting the results into a query returning a collection of their results.
For a sequential version of this method, see
foreach. - def foreachBatched[R, E, A, B](as: Array[A])(f: (A) => ZQuery[R, E, B])(implicit arg0: ClassTag[B], trace: Trace): ZQuery[R, E, Array[B]]
Performs a query for each element in an Array, batching requests to data sources and collecting the results into a query returning a collection of their results.
Performs a query for each element in an Array, batching requests to data sources and collecting the results into a query returning a collection of their results.
For a sequential version of this method, see
foreach. - def foreachBatched[R, E, A, B](as: Set[A])(fn: (A) => ZQuery[R, E, B])(implicit trace: Trace): ZQuery[R, E, Set[B]]
- def foreachBatched[R, E, A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => ZQuery[R, E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: Trace): ZQuery[R, E, Collection[B]]
Performs a query for each element in a collection, batching requests to data sources and collecting the results into a query returning a collection of their results.
- def foreachPar[R, E, A, B](as: NonEmptyChunk[A])(fn: (A) => ZQuery[R, E, B])(implicit trace: Trace): ZQuery[R, E, NonEmptyChunk[B]]
Performs a query for each element in a NonEmptyChunk, collecting the results into a query returning a collection of their results.
Performs a query for each element in a NonEmptyChunk, collecting the results into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
For a sequential version of this method, see
foreach. - def foreachPar[R, E, Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => ZQuery[R, E, (Key2, Value2)])(implicit trace: Trace): ZQuery[R, E, Map[Key2, Value2]]
Performs a query for each element in a Map, collecting the results into a query returning a collection of their results.
Performs a query for each element in a Map, collecting the results into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
For a sequential version of this method, see
foreach. - def foreachPar[R, E, A, B](as: Array[A])(f: (A) => ZQuery[R, E, B])(implicit arg0: ClassTag[B], trace: Trace): ZQuery[R, E, Array[B]]
Performs a query for each element in an Array, collecting the results into a query returning a collection of their results.
Performs a query for each element in an Array, collecting the results into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
For a sequential version of this method, see
foreach. - def foreachPar[R, E, A, B](as: Set[A])(fn: (A) => ZQuery[R, E, B])(implicit trace: Trace): ZQuery[R, E, Set[B]]
Performs a query for each element in a Set, collecting the results into a query returning a collection of their results.
Performs a query for each element in a Set, collecting the results into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
- def foreachPar[R, E, A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => ZQuery[R, E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: Trace): ZQuery[R, E, Collection[B]]
Performs a query for each element in a collection, collecting the results into a query returning a collection of their results.
Performs a query for each element in a collection, collecting the results into a query returning a collection of their results. Requests will be executed in parallel and will be batched.
- def fromEither[E, A](either: => Either[E, A])(implicit trace: Trace): ZQuery[Any, E, A]
Constructs a query from an either
- def fromOption[A](option: => Option[A])(implicit trace: Trace): ZQuery[Any, Option[Nothing], A]
Constructs a query from an option
- def fromRequest[R, E, A, B](request0: => A)(dataSource0: => DataSource[R, A])(implicit ev: <:<[A, Request[E, B]], trace: Trace): ZQuery[R, E, B]
Constructs a query from a request and a data source.
Constructs a query from a request and a data source. Queries will die with a
QueryFailurewhen run if the data source does not provide results for all requests received. Queries must be constructed withfromRequestor one of its variants for optimizations to be applied.- See also
fromRequestsfor variants that allow for multiple requests to be submitted at once
- def fromRequestUncached[R, E, A, B](request: => A)(dataSource: => DataSource[R, A])(implicit ev: <:<[A, Request[E, B]], trace: Trace): ZQuery[R, E, B]
Constructs a query from a request and a data source but does not apply caching to the query.
- def fromRequests[R, E, A, B](requests: List[A])(dataSource: DataSource[R, A])(implicit trace: Trace, ev: <:<[A, Request[E, B]]): ZQuery[R, E, List[B]]
Constructs a query from a List of requests and a data source.
Constructs a query from a List of requests and a data source. Queries will die with a QueryFailure when run the data source does not provide results for all requests received.
- See also
fromRequest for submitting a single request to a datasource
fromRequestsWithfor a variant that allows transforming the input to a request
- def fromRequests[R, E, A, B](requests: Chunk[A])(dataSource: DataSource[R, A])(implicit trace: Trace, ev: <:<[A, Request[E, B]]): ZQuery[R, E, Chunk[B]]
Constructs a query from a Chunk of requests and a data source.
Constructs a query from a Chunk of requests and a data source. Queries will die with a QueryFailure when run the data source does not provide results for all requests received.
- See also
fromRequest for submitting a single request to a datasource
fromRequestsWithfor a variant that allows transforming the input to a request
- def fromRequestsWith[R, E, In, A, B](as: List[In], f: (In) => A)(dataSource: DataSource[R, A])(implicit ev: <:<[A, Request[E, B]], trace: Trace): ZQuery[R, E, List[B]]
Constructs a query from a List of values, a function transforming them into requests and a data source.
Constructs a query from a List of values, a function transforming them into requests and a data source. Queries will die with a QueryFailure when run the data source does not provide results for all requests received.
- def fromRequestsWith[R, E, In, A, B](as: Chunk[In], f: (In) => A)(dataSource: DataSource[R, A])(implicit ev: <:<[A, Request[E, B]], trace: Trace): ZQuery[R, E, Chunk[B]]
Constructs a query from a Chunk of values, a function transforming them into requests and a data source.
Constructs a query from a Chunk of values, a function transforming them into requests and a data source. Queries will die with a QueryFailure when run the data source does not provide results for all requests received.
- def fromZIO[R, E, A](effect: => ZIO[R, E, A])(implicit trace: Trace): ZQuery[R, E, A]
Constructs a query from an effect.
- def fromZIONow[R, E, A](effect: ZIO[R, E, A])(implicit trace: Trace): ZQuery[R, E, A]
Constructs a query from an effect.
Constructs a query from an effect. Unlike fromZIO, this method does not suspend the creation of the effect which can lead to improved performance in some cases, but it should only be used when the creation of the effect is side effect-free.
Note that this is method is meant mostly for internal use, but it's made public so that library authors can make use of this optimization. Most users should use fromZIO instead.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def never(implicit trace: Trace): ZQuery[Any, Nothing, Nothing]
Constructs a query that never completes.
- val none: ZQuery[Any, Nothing, Option[Nothing]]
Constructs a query that succeds with the empty value.
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def partitionQuery[R, E, A, B](as: Iterable[A])(f: (A) => ZQuery[R, E, B])(implicit ev: CanFail[E], trace: Trace): ZQuery[R, Nothing, (Iterable[E], Iterable[B])]
Performs a query for each element in a collection, collecting the results into a collection of failed results and a collection of successful results.
Performs a query for each element in a collection, collecting the results into a collection of failed results and a collection of successful results. Requests will be executed sequentially and will be pipelined.
- def partitionQueryPar[R, E, A, B](as: Iterable[A])(f: (A) => ZQuery[R, E, B])(implicit ev: CanFail[E], trace: Trace): ZQuery[R, Nothing, (Iterable[E], Iterable[B])]
Performs a query for each element in a collection, collecting the results into a collection of failed results and a collection of successful results.
Performs a query for each element in a collection, collecting the results into a collection of failed results and a collection of successful results. Requests will be executed in parallel and will be batched.
- def service[R](implicit arg0: Tag[R], trace: Trace): ZQuery[R, Nothing, R]
Accesses the whole environment of the query.
- def serviceWith[R]: ServiceWithPartiallyApplied[R]
Accesses the environment of the effect.
Accesses the environment of the effect.
val portNumber = effect.access(_.config.portNumber) - def serviceWithQuery[R]: ServiceWithQueryPartiallyApplied[R]
Effectfully accesses the environment of the effect.
- def serviceWithZIO[R]: ServiceWithZIOPartiallyApplied[R]
Effectfully accesses the environment of the effect.
- def some[A](a: => A)(implicit trace: Trace): ZQuery[Any, Nothing, Option[A]]
Constructs a query that succeeds with the optional value.
- def succeed[A](value: => A)(implicit trace: Trace): ZQuery[Any, Nothing, A]
Lazily constructs a query that succeeds with the specified value.
Lazily constructs a query that succeeds with the specified value.
NOTE: If the
valueis side-effect free, prefer using succeedNow instead - def succeedNow[A](value: A): ZQuery[Any, Nothing, A]
Eagerly constructs a query that succeeds with the specified value.
- def suspend[R, E, A](query: => ZQuery[R, E, A])(implicit trace: Trace): ZQuery[R, E, A]
Returns a lazily constructed query.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- val unit: ZQuery[Any, Nothing, Unit]
The query that succeeds with the unit value.
- def unsandbox[R, E, A](v: => ZQuery[R, Cause[E], A])(implicit trace: Trace): ZQuery[R, E, A]
The inverse operation ZQuery.sandbox
The inverse operation ZQuery.sandbox
Terminates with exceptions on the
Leftside of theEithererror, if it exists. Otherwise extracts the containedIO[E, A] - def unwrap[R, E, A](zio: => ZIO[R, E, ZQuery[R, E, A]])(implicit trace: Trace): ZQuery[R, E, A]
Unwraps a query that is produced by an effect.
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object unsafe
These methods can improve UX and performance in some cases, but when used improperly they can lead to unexpected behaviour in the application code.
These methods can improve UX and performance in some cases, but when used improperly they can lead to unexpected behaviour in the application code.
Make sure you really understand them before using them!