Package

org.atnos

eff

Permalink

package eff

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

Type Members

  1. type /=[M[_], R] = MemberInOut[M, R]

    Permalink
  2. type <=[M[_], R] = Member[M, R]

    Permalink
  3. case class Apps[R, A, B](functions: Vector[Eff[R, (Any) ⇒ Any]]) extends Function[A, Eff[R, B]] with Product with Serializable

    Permalink

    Sequence of applicative functions from A to B: Eff[R, A => B]

  4. case class Arrs[R, A, B](functions: Vector[(Any) ⇒ Eff[R, Any]]) extends Product with Serializable

    Permalink

    Sequence of monadic functions from A to B: A => Eff[B]

    Sequence of monadic functions from A to B: A => Eff[B]

    Internally it is represented as a Vector of functions:

    A => Eff[R, X1]; X1 => Eff[R, X2]; X2 => Eff[R, X3]; ...; X3 => Eff[R, B]

  5. sealed trait Choose[T] extends AnyRef

    Permalink
  6. trait ChooseCreation extends AnyRef

    Permalink
  7. trait ChooseEffect extends ChooseCreation with ChooseInterpretation

    Permalink

    The Choose effect models non-determinism So we can get results, either:

    The Choose effect models non-determinism So we can get results, either:

    • no results (when using ChooseZero)
    • the result for action1 or the result for action b (when using ChoosePlus)

    When running this effect we can "collect" the results with any F which has an Alternative instance.

    For example if F is List then:

    • no results is the empty list
    • the result for a or b is List(a, b)

    If F is Option then:

    • no results is the None
    • the result for a or b is Some(a) or Some(b
  8. trait ChooseImplicits extends AnyRef

    Permalink
  9. trait ChooseInterpretation extends AnyRef

    Permalink
  10. case class ChooseZero[T]() extends Choose[T] with Product with Serializable

    Permalink
  11. case class CollectedUnions[M[_], R, U](effects: List[M[Any]], otherEffects: List[Union[U, Any]], indices: List[Int], otherIndices: List[Int]) extends Product with Serializable

    Permalink

    Collection of effects of a given type from a Unions objects

  12. case class Correct[E]() extends Validate[E, Unit] with Product with Serializable

    Permalink
  13. sealed trait Eff[R, A] extends AnyRef

    Permalink

    Effects of type R, returning a value of type A

    Effects of type R, returning a value of type A

    It is implemented as a "Free-er" monad with extensible effects:

    • the "pure" case is a pure value of type A
    • the "impure" case is:
      • a disjoint union of possible effects
      • a continuation of type X => Eff[R, A] indicating what to do if the current effect is of type M[X] this type is represented by the Arrs type

    The monad implementation for this type is really simple:

    • point is Pure
    • bind simply appends the binding function to the Arrs continuation

    Important:

    The list of continuations is NOT implemented as a type sequence but simply as a Vector[Any => Eff[R, Any]]

    This means that various .asInstanceOf are present in the implementation and could lead to burns and severe harm. Use with caution!

    See also

    http://okmij.org/ftp/Haskell/extensible/more.pdf

  14. trait EffCreation extends AnyRef

    Permalink
  15. trait EffImplicits extends AnyRef

    Permalink
  16. trait EffInterpretation extends AnyRef

    Permalink
  17. sealed trait Effect[F[_]] extends AnyRef

    Permalink

    one effect, basically a type constructor

  18. trait ErrorCreation[F] extends ErrorTypes[F]

    Permalink
  19. trait ErrorEffect[F] extends ErrorCreation[F] with ErrorInterpretation[F]

    Permalink

    Effect for computation which can fail and return a Throwable, or just stop with a failure

    Effect for computation which can fail and return a Throwable, or just stop with a failure

    This effect is a mix of Eval and Xor in the sense that every computation passed to this effect (with the ok method) is considered "impure" or "faulty" by default.

    The type F is used to represent the failure type.

  20. trait ErrorInterpretation[F] extends ErrorCreation[F]

    Permalink
  21. trait ErrorTypes[F] extends AnyRef

    Permalink
  22. trait EvalCreation extends EvalTypes

    Permalink
  23. trait EvalEffect extends EvalTypes with EvalCreation with EvalInterpretation

    Permalink

    Effect for delayed computations

    Effect for delayed computations

    uses cats.Eval as a supporting data structure

  24. trait EvalInterpretation extends EvalTypes

    Permalink
  25. trait EvalTypes extends AnyRef

    Permalink
  26. case class Evaluate[F, A](run: Xor[Xor[Throwable, F], Eval[A]]) extends Product with Serializable

    Permalink
  27. case class EvaluateValue[A](a: Eval[A]) extends Safe[A] with Product with Serializable

    Permalink
  28. case class FailedFinalizer(t: Throwable) extends Safe[Unit] with Product with Serializable

    Permalink
  29. case class FailedValue[A](t: Throwable) extends Safe[A] with Product with Serializable

    Permalink
  30. trait FutureCreation extends AnyRef

    Permalink
  31. trait FutureEffect extends FutureCreation with FutureInterpretation

    Permalink

    Effect for Future computations

  32. trait FutureInterpretation extends AnyRef

    Permalink
  33. sealed trait Fx extends AnyRef

    Permalink

    Base type for a tree of effect types

  34. final case class Fx1[F[_]](e: Effect[F]) extends Fx with Product with Serializable

    Permalink
  35. final case class Fx2[L[_], R[_]](left: Effect[L], right: Effect[R]) extends Fx with Product with Serializable

    Permalink
  36. final case class Fx3[L[_], M[_], R[_]](left: Effect[L], middle: Effect[M], right: Effect[R]) extends Fx with Product with Serializable

    Permalink
  37. final case class FxAppend[L, R](left: L, right: R) extends Fx with Product with Serializable

    Permalink

    Append a tree of effects to another one

  38. case class Impure[R, X, A](union: Union[R, X], continuation: Arrs[R, X, A]) extends Eff[R, A] with Product with Serializable

    Permalink

    Impure is an effect (encoded as one possibility among other effects, a Union) and a continuation providing the next Eff value.

    Impure is an effect (encoded as one possibility among other effects, a Union) and a continuation providing the next Eff value.

    This essentially models a flatMap operation with the current effect and the monadic function to apply to a value once the effect is interpreted

  39. case class ImpureAp[R, X, A](unions: Unions[R, X], map: (List[Any]) ⇒ A) extends Eff[R, A] with Product with Serializable

    Permalink

    ImpureAp is a list of independent effects and a pure function creating a value with all the resulting values once all effects have been interpreted.

    ImpureAp is a list of independent effects and a pure function creating a value with all the resulting values once all effects have been interpreted.

    This essentially models a sequence + map operation but it is important to understand that the list of Union objects can represent different effects and be like: List[Option[Int], Future[String], Option[Int]].

    Interpreting such an Eff value for a given effect (say Option) consists in:

    • grouping all the Option values,
    • sequencing them
    • pass them to a continuation which will apply the 'map' functions when the other effects (Future in the example above) will have been interpreted

    VERY IMPORTANT:

    • this object is highly unsafe
    • the size of the list argument to 'map' must always be equal to the number of unions in the Unions object
    • the types of the elements in the list argument to 'map' must be the exact types of each effect in unions.unions
  40. trait Interpret extends AnyRef

    Permalink

    Support methods to create interpreters (or "effect handlers") for a given effect M and a value Eff[R, A] when M is a member of R.

    Support methods to create interpreters (or "effect handlers") for a given effect M and a value Eff[R, A] when M is a member of R.

    Those methods guarantee a stack-safe behaviour when running on a large list of effects (in list.traverse(f) for example).

    There are different types of supported interpreters:

    1. "interpret" + Recurse

    This interpreter is used to handle effects which either return a value X from M[X] or stops with Eff[R, B] See an example of such an interpreter in Eval where we just evaluate a computation X for each Eval[X].

    2. "interpretState" + StateRecurse

    This interpreter is used to handle effects which either return a value X from M[X] or stops with Eff[R, B]

    3. "interpretLoop" + Loop

    The most generic kind of interpreter where we can even recurse in the case of Pure(a) (See ListEffect for such a use)

    4. "intercept / interceptState / interceptLoop" methods are similar but they transform an effect to other effects in the same stack without removing it from the stack

    5. "transform" to swap an effect T of a stack to another effect, using a Natural Transformation

    6. "translate" to interpret one effect of a stack into other effects of the same stack using a Natural Transformation this is a specialized version of interpret + Recurse

    7. "interpretUnsafe + SideEffect" when you have a side effecting function M[X] => X

  41. trait IntoPoly[R, U] extends AnyRef

    Permalink

    Typeclass proving that it is possible to send a tree of effects R into another tree of effects U

    Typeclass proving that it is possible to send a tree of effects R into another tree of effects U

    for example

    send[Option1, Fx.fx3[Option1, Option2, Option3], Int](Option1(1)). into[Fx.fx5[Option1, Option2, Option3, Option4, Option5]]

    should work because all the effects of the first stack are present in the second

    Note: some implicit definitions are probably missing in some cases

  42. trait IntoPolyLower1 extends IntoPolyLower2

    Permalink
  43. trait IntoPolyLower2 extends IntoPolyLower3

    Permalink
  44. trait IntoPolyLower3 extends IntoPolyLower4

    Permalink
  45. trait IntoPolyLower4 extends AnyRef

    Permalink
  46. trait LeftFold[A, B] extends AnyRef

    Permalink

    support trait for folding values while possibly keeping some internal state

  47. trait ListCreation extends AnyRef

    Permalink
  48. trait ListEffect extends ListCreation with ListInterpretation

    Permalink

    Effect for computations possibly returning several values

  49. trait ListInterpretation extends AnyRef

    Permalink
  50. trait Member[T[_], R] extends MemberInOut[T, R]

    Permalink
    Annotations
    @implicitNotFound( ... )
  51. trait MemberIn[T[_], R] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  52. trait MemberInLower1 extends MemberInLower2

    Permalink
  53. trait MemberInLower2 extends MemberInLower3

    Permalink
  54. trait MemberInLower3 extends MemberInLower4

    Permalink
  55. trait MemberInLower4 extends MemberInLower5

    Permalink
  56. trait MemberInLower5 extends AnyRef

    Permalink
  57. trait MemberInOut[T[_], R] extends MemberIn[T, R]

    Permalink
    Annotations
    @implicitNotFound( ... )
  58. trait MemberInOutLower1 extends MemberInOutLower2

    Permalink
  59. trait MemberInOutLower2 extends MemberInOutLower3

    Permalink
  60. trait MemberInOutLower3 extends MemberInOutLower4

    Permalink
  61. trait MemberInOutLower4 extends MemberInOutLower5

    Permalink
  62. trait MemberInOutLower5 extends AnyRef

    Permalink
  63. trait MemberLower1 extends MemberLower2

    Permalink
  64. trait MemberLower10 extends MemberLower11

    Permalink
  65. trait MemberLower11 extends MemberLower12

    Permalink
  66. trait MemberLower12 extends MemberLower13

    Permalink
  67. trait MemberLower13 extends MemberLower14

    Permalink
  68. trait MemberLower14 extends MemberLower15

    Permalink
  69. trait MemberLower15 extends MemberLower16

    Permalink
  70. trait MemberLower16 extends MemberLower17

    Permalink
  71. trait MemberLower17 extends MemberLower18

    Permalink
  72. trait MemberLower18 extends MemberLower19

    Permalink
  73. trait MemberLower19 extends AnyRef

    Permalink
  74. trait MemberLower2 extends MemberLower3

    Permalink
  75. trait MemberLower3 extends MemberLower4

    Permalink
  76. trait MemberLower4 extends MemberLower5

    Permalink
  77. trait MemberLower5 extends MemberLower6

    Permalink
  78. trait MemberLower6 extends MemberLower7

    Permalink
  79. trait MemberLower7 extends MemberLower8

    Permalink
  80. trait MemberLower8 extends MemberLower9

    Permalink
  81. trait MemberLower9 extends MemberLower10

    Permalink
  82. class NoFx extends Fx

    Permalink

    The "empty" tree of effects

  83. trait Optimisable[T[_]] extends AnyRef

    Permalink

    "Optimisable" effects are effects where you can define:

    "Optimisable" effects are effects where you can define:

    • an optimiser function, "optimise": to transform a list of effects returning some values X, Y, Z... into a list of other effects returning other values A, B, C
    • a mapping, "distribute": to map back the values A, B, C to the expected values X, Y, Z

    The expected (informal) law is that, for a given applicative interpreter of T, run: List[T[Any]] => List[Any], we have:

    distribute(run(optimise(effects))) == run(effects)

    NOTE: If an Optimisable instance doesn't satisfy this law, there will be runtime errors!!!

  84. trait Optimise extends AnyRef

    Permalink
  85. trait OptionCreation extends AnyRef

    Permalink
  86. trait OptionEffect extends OptionCreation with OptionInterpretation

    Permalink

    Effect for optional computations

  87. trait OptionInterpretation extends AnyRef

    Permalink
  88. case class Pure[R, A](value: A) extends Eff[R, A] with Product with Serializable

    Permalink
  89. trait ReaderCreation extends AnyRef

    Permalink
  90. trait ReaderEffect extends ReaderCreation with ReaderInterpretation

    Permalink

    Effect for computations depending on an environment.

    Effect for computations depending on an environment.

    The inside datatype for this effect is cats.data.Reader

  91. trait ReaderInterpretation extends AnyRef

    Permalink
  92. sealed trait Safe[A] extends AnyRef

    Permalink

    The Safe type is a mix of a ThrowableXor / Eval effect and a writer effect to collect finalizer failures

  93. trait SafeCreation extends SafeTypes

    Permalink
  94. trait SafeEffect extends SafeCreation with SafeInterpretation

    Permalink
  95. trait SafeInterpretation extends SafeCreation

    Permalink
  96. trait SafeTypes extends AnyRef

    Permalink
  97. trait StateCreation extends AnyRef

    Permalink
  98. trait StateEffect extends StateCreation with StateInterpretation

    Permalink

    Effect for passing state along computations

    Effect for passing state along computations

    Internally backed up by cats.data.State

  99. trait StateInterpretation extends AnyRef

    Permalink
  100. sealed trait Union[+R, A] extends AnyRef

    Permalink

    Union represents one effect T[_] embedded in a tree of possible effects R

    Union represents one effect T[_] embedded in a tree of possible effects R

    Since the effect tree is represented with the following cases:

    • Fx1[T]
    • Fx2[T1, T2]
    • Fx3[T1, T2, T3]
    • FxAppend[L, R]

    We have the corresponding Union cases. For example T2 is in the "middle" of Fx3[T1, T2, T3] so creating a Union object for that effect uses Union3M

  101. case class Union1[T[_], A](ta: T[A]) extends Union[Fx1[T], A] with Product with Serializable

    Permalink
  102. sealed trait Union2[R, A] extends Union[R, A]

    Permalink
  103. case class Union2L[L[_], R[_], A](t: L[A]) extends Union2[Fx2[L, R], A] with Product with Serializable

    Permalink
  104. case class Union2R[L[_], R[_], A](t: R[A]) extends Union2[Fx2[L, R], A] with Product with Serializable

    Permalink
  105. sealed trait Union3[R, A] extends Union[R, A]

    Permalink
  106. case class Union3L[L[_], M[_], R[_], A](t: L[A]) extends Union3[Fx3[L, M, R], A] with Product with Serializable

    Permalink
  107. case class Union3M[L[_], M[_], R[_], A](t: M[A]) extends Union3[Fx3[L, M, R], A] with Product with Serializable

    Permalink
  108. case class Union3R[L[_], M[_], R[_], A](t: R[A]) extends Union3[Fx3[L, M, R], A] with Product with Serializable

    Permalink
  109. sealed trait UnionAppend[R, A] extends Union[R, A]

    Permalink
  110. case class UnionAppendL[L, R, A](t: Union[L, A]) extends UnionAppend[FxAppend[L, R], A] with Product with Serializable

    Permalink
  111. case class UnionAppendR[L, R, A](t: Union[R, A]) extends UnionAppend[FxAppend[L, R], A] with Product with Serializable

    Permalink
  112. trait UnionInto[R, S] extends AnyRef

    Permalink
  113. case class Unions[R, A](first: Union[R, A], rest: List[Union[R, Any]]) extends Product with Serializable

    Permalink

    A non-empty list of Unions.

    A non-empty list of Unions.

    It is only partially typed, we just keep track of the type of the first object

  114. sealed trait Validate[+E, A] extends AnyRef

    Permalink
  115. trait ValidateCreation extends AnyRef

    Permalink
  116. trait ValidateEffect extends ValidateCreation with ValidateInterpretation

    Permalink

    Effect for computation which can fail but will accumulate errors

    Effect for computation which can fail but will accumulate errors

    The runValidate interpreter just collects the messages and returns them at the end

  117. trait ValidateInterpretation extends ValidateCreation

    Permalink
  118. trait WriterCreation extends AnyRef

    Permalink
  119. trait WriterEffect extends WriterCreation with WriterInterpretation

    Permalink

    Effect for logging values alongside computations

    Effect for logging values alongside computations

    Compared to traditional Writer monad which accumulates values by default this effect can be interpreted in different ways:

    • log values to the console or to a file as soon as they are produced
    • accumulate values in a list
  120. trait WriterInterpretation extends AnyRef

    Permalink
  121. case class Wrong[E](e: E) extends Validate[E, Unit] with Product with Serializable

    Permalink
  122. trait XorCreation extends AnyRef

    Permalink
  123. trait XorEffect extends XorCreation with XorInterpretation

    Permalink

    Effect for computation which can fail

  124. trait XorInterpretation extends AnyRef

    Permalink
  125. type |=[M[_], R] = MemberIn[M, R]

    Permalink

Value Members

  1. object Apps extends Serializable

    Permalink
  2. object Arrs extends Serializable

    Permalink
  3. object BuildInfo

    Permalink
  4. object ChooseCreation extends ChooseCreation

    Permalink
  5. object ChooseEffect extends ChooseEffect

    Permalink
  6. object ChooseImplicits extends ChooseImplicits

    Permalink
  7. object ChooseInterpretation extends ChooseInterpretation

    Permalink
  8. object ChoosePlus extends Choose[Boolean] with Product with Serializable

    Permalink
  9. object Eff extends EffCreation with EffInterpretation with EffImplicits

    Permalink
  10. object EffCreation extends EffCreation

    Permalink
  11. object EffImplicits extends EffImplicits

    Permalink
  12. object EffInterpretation extends EffInterpretation

    Permalink
  13. object ErrorEffect extends ErrorEffect[String]

    Permalink

    Simple instantiation of the ErrorEffect trait with String as a Failure type

  14. object EvalEffect extends EvalEffect

    Permalink
  15. object EvalInterpretation extends EvalInterpretation

    Permalink
  16. object EvalTypes extends EvalTypes

    Permalink
  17. object Evaluate extends Serializable

    Permalink
  18. object FutureEffect extends FutureEffect

    Permalink
  19. object FutureInterpretation extends FutureInterpretation

    Permalink
  20. object Fx

    Permalink
  21. object Interpret extends Interpret

    Permalink
  22. object IntoPoly extends IntoPolyLower1

    Permalink
  23. object ListCreation extends ListCreation

    Permalink
  24. object ListEffect extends ListEffect

    Permalink
  25. object ListInterpretation extends ListInterpretation

    Permalink
  26. object Member extends MemberLower1

    Permalink
  27. object MemberIn extends MemberInLower1

    Permalink
  28. object MemberInOut extends MemberInOutLower1

    Permalink
  29. object NoFx extends NoFx

    Permalink
  30. object Optimisable

    Permalink
  31. object Optimise extends Optimise

    Permalink
  32. object OptionCreation extends OptionCreation

    Permalink
  33. object OptionEffect extends OptionEffect

    Permalink
  34. object OptionInterpretation extends OptionInterpretation

    Permalink
  35. object ReaderCreation extends ReaderCreation

    Permalink
  36. object ReaderEffect extends ReaderEffect

    Permalink
  37. object ReaderInterpretation extends ReaderInterpretation

    Permalink
  38. object SafeEffect extends SafeEffect

    Permalink
  39. object SafeInterpretation extends SafeInterpretation

    Permalink
  40. object StateCreation extends StateCreation

    Permalink
  41. object StateEffect extends StateEffect

    Permalink
  42. object StateInterpretation extends StateInterpretation

    Permalink
  43. object ValidateCreation extends ValidateCreation

    Permalink
  44. object ValidateEffect extends ValidateEffect

    Permalink
  45. object ValidateInterpretation extends ValidateInterpretation

    Permalink
  46. object WriterCreation extends WriterCreation

    Permalink
  47. object WriterEffect extends WriterEffect

    Permalink
  48. object WriterInterpretation extends WriterInterpretation

    Permalink
  49. object XorCreation extends XorCreation

    Permalink
  50. object XorEffect extends XorEffect

    Permalink
  51. object XorInterpretation extends XorInterpretation

    Permalink
  52. object all extends ReaderEffect with WriterEffect with StateEffect with EvalEffect with OptionEffect with ListEffect with XorEffect with ValidateEffect with ChooseEffect with FutureEffect with SafeEffect with Optimise with EffInterpretation with EffCreation with EffImplicits

    Permalink
  53. object choose extends ChooseCreation with ChooseInterpretation

    Permalink
  54. object create extends ReaderCreation with WriterCreation with StateCreation with EvalCreation with OptionCreation with ListCreation with XorCreation with ValidateCreation with ChooseCreation with FutureCreation with EffCreation with SafeCreation

    Permalink
  55. object eff extends EffCreation with EffInterpretation

    Permalink
  56. object eval extends EvalCreation with EvalInterpretation

    Permalink
  57. object future extends FutureCreation with FutureInterpretation

    Permalink
  58. object interpret extends Interpret with Optimise

    Permalink
  59. object list extends ListCreation with ListInterpretation

    Permalink
  60. object optimise extends Optimise

    Permalink
  61. object option extends OptionCreation with OptionInterpretation

    Permalink
  62. object reader extends ReaderCreation with ReaderInterpretation

    Permalink
  63. object safe extends SafeCreation with SafeInterpretation

    Permalink
  64. object state extends StateCreation with StateInterpretation

    Permalink
  65. package syntax

    Permalink
  66. object validate extends ValidateCreation with ValidateInterpretation

    Permalink
  67. object writer extends WriterCreation with WriterInterpretation

    Permalink
  68. object xor extends XorCreation with XorInterpretation

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped