object ZQuery
- Alphabetic
- By Inheritance
- ZQuery
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- final class AccessMPartiallyApplied[R] extends AnyVal
- final class AccessPartiallyApplied[R] extends AnyVal
- final class ProvideSomeLayer[R0 <: Has[_], -R, +E, +A] 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
- final def absolve[R, E, A](v: ZQuery[R, E, Either[E, A]]): ZQuery[R, E, A]
-
final
def
access[R]: AccessPartiallyApplied[R]
Accesses the environment of the effect.
Accesses the environment of the effect.
val portNumber = effect.access(_.config.portNumber) -
final
def
accessM[R]: AccessMPartiallyApplied[R]
Effectfully accesses the environment of the effect.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
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]]): 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, Collection[+Element] <: Iterable[Element]](as: Collection[ZQuery[R, E, A]])(implicit bf: zio.BuildFrom[Collection[ZQuery[R, E, A]], A, Collection[A]]): 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, Collection[+Element] <: Iterable[Element]](as: Collection[ZQuery[R, E, A]])(implicit bf: zio.BuildFrom[Collection[ZQuery[R, E, A]], A, Collection[A]]): 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.
-
def
die(t: ⇒ Throwable): ZQuery[Any, Nothing, Nothing]
Constructs a query that dies with the specified error.
-
def
environment[R]: ZQuery[R, Nothing, R]
Accesses the whole environment of the query.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
fail[E](error: ⇒ E): ZQuery[Any, E, Nothing]
Constructs a query that fails with the specified error.
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
foreach[R, E, A, B](in: NonEmptyChunk[A])(f: (A) ⇒ ZQuery[R, E, B]): 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. -
final
def
foreach[R, E, A, B](in: Option[A])(f: (A) ⇒ ZQuery[R, E, B]): 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)]): 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. -
final
def
foreach[R, E, A, B](in: Array[A])(f: (A) ⇒ ZQuery[R, E, B])(implicit arg0: ClassTag[B]): 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. -
final
def
foreach[R, E, A, B](in: Set[A])(f: (A) ⇒ ZQuery[R, E, B]): 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]]): 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.
-
final
def
foreachBatched[R, E, A, B](as: NonEmptyChunk[A])(f: (A) ⇒ ZQuery[R, E, B]): 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)]): 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. -
final
def
foreachBatched[R, E, A, B](as: Array[A])(f: (A) ⇒ ZQuery[R, E, B])(implicit arg0: ClassTag[B]): 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. - final def foreachBatched[R, E, A, B](as: Set[A])(fn: (A) ⇒ ZQuery[R, E, B]): 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]]): 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.
-
final
def
foreachPar[R, E, A, B](as: NonEmptyChunk[A])(fn: (A) ⇒ ZQuery[R, E, B]): 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)]): 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. -
final
def
foreachPar[R, E, A, B](as: Array[A])(f: (A) ⇒ ZQuery[R, E, B])(implicit arg0: ClassTag[B]): 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. -
final
def
foreachPar[R, E, A, B](as: Set[A])(fn: (A) ⇒ ZQuery[R, E, B]): 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]]): 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
fromEffect[R, E, A](effect: ZIO[R, E, A]): ZQuery[R, E, A]
Constructs a query from an effect.
-
def
fromEither[E, A](either: ⇒ Either[E, A]): ZQuery[Any, E, A]
Constructs a query from an either
-
def
fromOption[A](option: Option[A]): ZQuery[Any, Option[Nothing], A]
Constructs a query from an option
-
def
fromRequest[R, E, A, B](request: A)(dataSource: DataSource[R, A])(implicit ev: <:<[A, Request[E, B]]): 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. -
def
fromRequestUncached[R, E, A, B](request: A)(dataSource: DataSource[R, A])(implicit ev: <:<[A, Request[E, B]]): ZQuery[R, E, B]
Constructs a query from a request and a data source but does not apply caching to the query.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
halt[E](cause: ⇒ Cause[E]): ZQuery[Any, E, Nothing]
Constructs a query that fails with the specified cause.
-
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
-
val
never: 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
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
partitionM[R, E, A, B](as: Iterable[A])(f: (A) ⇒ ZQuery[R, E, B])(implicit ev: CanFail[E]): 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
partitionMPar[R, E, A, B](as: Iterable[A])(f: (A) ⇒ ZQuery[R, E, B])(implicit ev: CanFail[E]): 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
some[A](a: ⇒ A): ZQuery[Any, Nothing, Option[A]]
Constructs a query that succeeds with the optional value.
-
def
succeed[A](value: ⇒ A): ZQuery[Any, Nothing, A]
Constructs a query that succeeds with the specified value.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
unsandbox[R, E, A](v: ZQuery[R, Cause[E], A]): 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]]): ZQuery[R, E, A]
Unwraps a query that is produced by an effect.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()