automorph.system
package automorph.system
Members list
Type members
Classlikes
final case class FutureSystem()(implicit executionContext: ExecutionContext) extends AsyncEffectSystem[Future]
Asynchronous effect system plugin using Future as an effect type.
Asynchronous effect system plugin using Future as an effect type.
Value parameters
- executionContext
-
execution context
Attributes
- Constructor
-
Creates an asynchronous effect system plugin using
Future
as an effect type. - See also
- Companion
- object
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait AsyncEffectSystem[Future]trait EffectSystem[Future]class Objecttrait Matchableclass AnyShow all
object FutureSystem
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
FutureSystem.type
final case class IdentitySystem() extends EffectSystem[Identity]
Synchronous effect system plugin using identity as an effect type.
Synchronous effect system plugin using identity as an effect type.
Represents direct use of computed values without wrapping them in an effect.
Attributes
- Constructor
-
Creates a synchronous effect system plugin using identity as an effect type.
- See also
- Companion
- object
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait EffectSystem[Identity]class Objecttrait Matchableclass AnyShow all
object IdentitySystem
Attributes
- Companion
- class
- Supertypes
- Self type
-
IdentitySystem.type
final case class TrySystem() extends EffectSystem[Try]
Synchronous effect system plugin using Try
as an effect type.
Synchronous effect system plugin using Try
as an effect type.
Attributes
- Constructor
-
Creates a synchronous effect system plugin using Try as an effect type.
- See also
- Companion
- object
- Supertypes
-
trait Serializabletrait Producttrait Equalstrait EffectSystem[Try]class Objecttrait Matchableclass AnyShow all
In this article