object
STM
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
def
absolve[E, A](e: STM[E, Either[E, A]]): STM[E, A]
-
final
def
asInstanceOf[T0]: T0
-
def
atomically[E, A](stm: STM[E, A]): IO[E, A]
-
-
def
clone(): AnyRef
-
def
collectAll[E, A](in: Set[STM[E, A]]): STM[E, Set[A]]
-
def
collectAll[E, A, Collection[+Element] <: Iterable[Element]](in: Collection[STM[E, A]])(implicit bf: zio.BuildFrom[Collection[STM[E, A]], A, Collection[A]]): STM[E, Collection[A]]
-
def
collectAll_[E, A](in: Iterable[STM[E, A]]): STM[E, Unit]
-
def
cond[E, A](predicate: Boolean, result: ⇒ A, error: ⇒ E): STM[E, A]
-
def
die(t: ⇒ Throwable): USTM[Nothing]
-
def
dieMessage(m: ⇒ String): USTM[Nothing]
-
def
done[E, A](exit: ⇒ TExit[E, A]): STM[E, A]
-
-
-
def
fail[E](e: ⇒ E): STM[E, Nothing]
-
val
fiberId: USTM[Id]
-
def
filter[E, A](as: Set[A])(f: (A) ⇒ STM[E, Boolean]): STM[E, Set[A]]
-
def
filter[E, A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ STM[E, Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): STM[E, Collection[A]]
-
def
filterNot[E, A](as: Set[A])(f: (A) ⇒ STM[E, Boolean]): STM[E, Set[A]]
-
def
filterNot[E, A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ STM[E, Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): STM[E, Collection[A]]
-
def
finalize(): Unit
-
def
flatten[E, A](task: STM[E, STM[E, A]]): STM[E, A]
-
def
foldLeft[E, S, A](in: Iterable[A])(zero: S)(f: (S, A) ⇒ STM[E, S]): STM[E, S]
-
def
foldRight[E, S, A](in: Iterable[A])(zero: S)(f: (A, S) ⇒ STM[E, S]): STM[E, S]
-
def
foreach[E, A, B](in: Set[A])(f: (A) ⇒ STM[E, B]): STM[E, Set[B]]
-
def
foreach[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ STM[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): STM[E, Collection[B]]
-
def
foreach_[E, A](in: Iterable[A])(f: (A) ⇒ STM[E, Any]): STM[E, Unit]
-
def
fromEither[E, A](e: ⇒ Either[E, A]): STM[E, A]
-
def
fromFunction[A](f: (Any) ⇒ A): USTM[A]
-
def
fromFunctionM[E, A](f: (Any) ⇒ STM[E, A]): STM[E, A]
-
-
def
fromTry[A](a: ⇒ Try[A]): TaskSTM[A]
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
def
identity: USTM[Any]
-
-
final
def
isInstanceOf[T0]: Boolean
-
def
iterate[E, S](initial: S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ STM[E, S]): STM[E, S]
-
def
left[A](a: ⇒ A): USTM[Either[A, Nothing]]
-
def
loop[E, A, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ STM[E, A]): STM[E, List[A]]
-
def
loop_[E, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ STM[E, Any]): STM[E, Unit]
-
def
mapN[E, A, B, C, D, F](tx1: STM[E, A], tx2: STM[E, B], tx3: STM[E, C], tx4: STM[E, D])(f: (A, B, C, D) ⇒ F): STM[E, F]
-
def
mapN[E, A, B, C, D](tx1: STM[E, A], tx2: STM[E, B], tx3: STM[E, C])(f: (A, B, C) ⇒ D): STM[E, D]
-
def
mapN[E, A, B, C](tx1: STM[E, A], tx2: STM[E, B])(f: (A, B) ⇒ C): STM[E, C]
-
def
mergeAll[E, A, B](in: Iterable[STM[E, A]])(zero: B)(f: (B, A) ⇒ B): STM[E, B]
-
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
partial[A](a: ⇒ A): STM[Throwable, A]
-
def
partition[E, A, B](in: Iterable[A])(f: (A) ⇒ STM[E, B])(implicit ev: CanFail[E]): STM[Nothing, (Iterable[E], Iterable[B])]
-
def
reduceAll[E, A](a: STM[E, A], as: Iterable[STM[E, A]])(f: (A, A) ⇒ A): STM[E, A]
-
def
replicate[E, A](n: Int)(tx: STM[E, A]): Iterable[STM[E, A]]
-
def
replicateM[E, A](n: Int)(transaction: STM[E, A]): STM[E, Iterable[A]]
-
def
replicateM_[E, A](n: Int)(transaction: STM[E, A]): STM[E, Unit]
-
def
require[E, A](error: ⇒ E): (STM[E, Option[A]]) ⇒ STM[E, A]
-
-
def
right[A](a: ⇒ A): USTM[Either[Nothing, A]]
-
def
some[A](a: ⇒ A): USTM[Option[A]]
-
def
succeed[A](a: ⇒ A): USTM[A]
-
def
suspend[E, A](stm: ⇒ STM[E, A]): STM[E, A]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
-
def
unless[E](b: ⇒ Boolean)(stm: ⇒ STM[E, Any]): STM[E, Unit]
-
-
def
validate[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ STM[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], ev: CanFail[E]): STM[::[E], Collection[B]]
-
def
validateFirst[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ STM[E, B])(implicit bf: zio.BuildFrom[Collection[A], E, Collection[E]], ev: CanFail[E]): STM[Collection[E], B]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
-
-
-