Packages

o

zio.stm

STM

object STM

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. STM
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def absolve[R, E, A](e: STM[E, Either[E, A]]): STM[E, A]

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def atomically[E, A](stm: STM[E, A]): IO[E, A]

  7. def check(p: ⇒ Boolean): STM[Nothing, Unit]

    See also

    See zio.stm.ZSTM.check

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def collectAll[E, A](i: Iterable[STM[E, A]]): STM[E, List[A]]

  10. def die(t: ⇒ Throwable): STM[Nothing, Nothing]

    See also

    See zio.stm.ZSTM.die

  11. def dieMessage(m: ⇒ String): STM[Nothing, Nothing]

  12. def done[E, A](exit: ⇒ TExit[E, A]): STM[E, A]

    See also

    See zio.stm.ZSTM.done

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def fail[E](e: ⇒ E): STM[E, Nothing]

    See also

    See zio.stm.ZSTM.fail

  16. val fiberId: STM[Nothing, Id]

  17. def filter[E, A](as: Iterable[A])(f: (A) ⇒ STM[E, Boolean]): STM[E, List[A]]

  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def flatten[E, A](task: STM[E, STM[E, A]]): STM[E, A]

  20. def foldLeft[E, S, A](in: Iterable[A])(zero: S)(f: (S, A) ⇒ STM[E, S]): STM[E, S]

  21. def foldRight[E, S, A](in: Iterable[A])(zero: S)(f: (A, S) ⇒ STM[E, S]): STM[E, S]

  22. def foreach[E, A, B](as: Iterable[A])(f: (A) ⇒ STM[E, B]): STM[E, List[B]]

  23. def foreach_[E, A, B](as: Iterable[A])(f: (A) ⇒ STM[E, B]): STM[E, Unit]

  24. def fromEither[E, A](e: ⇒ Either[E, A]): STM[E, A]

  25. def fromFunction[A](f: (Any) ⇒ A): STM[Nothing, A]

  26. def fromFunctionM[R, E, A](f: (Any) ⇒ STM[E, A]): STM[E, A]

  27. def fromOption[A](v: ⇒ Option[A]): STM[Unit, A]

  28. def fromTry[A](a: ⇒ Try[A]): STM[Throwable, A]

  29. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. def identity: STM[Nothing, Any]

  32. def ifM[E](b: STM[E, Boolean]): IfM[Any, E]

    See also

    See zio.stm.ZSTM.ifM

  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. def iterate[E, S](initial: S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ STM[E, S]): STM[E, S]

  35. def left[A](a: ⇒ A): STM[Nothing, Either[A, Nothing]]

    See also

    See zio.stm.ZSTM.left

  36. def loop[E, A, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ STM[E, A]): STM[E, List[A]]

    See also

    See zio.stm.ZSTM.loop

  37. def loop_[E, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ STM[E, Any]): STM[E, Unit]

    See also

    See zio.stm.ZSTM.loop_

  38. 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]

  39. 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]

  40. def mapN[E, A, B, C](tx1: STM[E, A], tx2: STM[E, B])(f: (A, B) ⇒ C): STM[E, C]

  41. def mergeAll[E, A, B](in: Iterable[STM[E, A]])(zero: B)(f: (B, A) ⇒ B): STM[E, B]

  42. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. val none: STM[Nothing, Option[Nothing]]

    See also

    See zio.stm.ZSTM.none

  44. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  45. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  46. def partial[A](a: ⇒ A): STM[Throwable, A]

  47. def partition[E, A, B](in: Iterable[A])(f: (A) ⇒ STM[E, B])(implicit ev: CanFail[E]): STM[Nothing, (List[E], List[B])]

  48. def reduceAll[E, A](a: STM[E, A], as: Iterable[STM[E, A]])(f: (A, A) ⇒ A): STM[E, A]

  49. def replicate[E, A](n: Int)(tx: STM[E, A]): Iterable[STM[E, A]]

  50. def require[R, E, A](error: ⇒ E): (ZSTM[R, E, Option[A]]) ⇒ ZSTM[R, E, A]

  51. val retry: STM[Nothing, Nothing]

    See also

    See zio.stm.ZSTM.retry

  52. def right[A](a: ⇒ A): STM[Nothing, Either[Nothing, A]]

    See also

    See zio.stm.ZSTM.right

  53. def some[A](a: ⇒ A): STM[Nothing, Option[A]]

    See also

    See zio.stm.ZSTM.some

  54. def succeed[A](a: ⇒ A): STM[Nothing, A]

  55. def suspend[E, A](stm: ⇒ STM[E, A]): STM[E, A]

  56. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  57. def toString(): String
    Definition Classes
    AnyRef → Any
  58. val unit: STM[Nothing, Unit]

    See also

    See zio.stm.ZSTM.unit

  59. def validate[E, A, B](in: Iterable[A])(f: (A) ⇒ STM[E, B])(implicit ev: CanFail[E]): STM[::[E], List[B]]

  60. def validateFirst[E, A, B](in: Iterable[A])(f: (A) ⇒ STM[E, B])(implicit ev: CanFail[E]): STM[List[E], B]

  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  62. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  64. def when[E](b: ⇒ Boolean)(stm: STM[E, Any]): STM[E, Unit]

    See also

    See zio.stm.ZSTM.when

  65. def whenCase[E, A](a: ⇒ A)(pf: PartialFunction[A, STM[E, Any]]): STM[E, Unit]

  66. def whenCaseM[E, A](a: STM[E, A])(pf: PartialFunction[A, STM[E, Any]]): STM[E, Unit]

  67. def whenM[E](b: STM[E, Boolean])(stm: STM[E, Any]): STM[E, Unit]

    See also

    See zio.stm.ZSTM.whenM

Inherited from AnyRef

Inherited from Any

Ungrouped