trait MakeDSLBase[T, AfterBind] extends AnyRef
- Alphabetic
- By Inheritance
- MakeDSLBase
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
Concrete 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 asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def from[I <: T](function: Functoid[I])(implicit d: DummyImplicit): AfterBind
A function that receives its arguments from DI object graph, including named instances via izumi.distage.model.definition.Id annotation.
A function that receives its arguments from DI object graph, including named instances via izumi.distage.model.definition.Id annotation.
The following syntaxes are supported by extractor macro:
Inline lambda:
make[Unit].from { i: Int @Id("special") => () }
Method reference:
def constructor(@Id("special") i: Int): Unit = () make[Unit].from(constructor _) make[Unit].from(constructor(_))
Function value with an annotated signature:
val constructor: (Int @Id("special"), String @Id("special")) => Unit = (_, _) => () make[Unit].from(constructor)
Using intermediate vals will lose annotations when converting a method into a function value, Prefer passing inline lambdas such as
{ x => y }
or method references such as(method _)
or(method(_))
.:def constructorMethod(@Id("special") i: Int): Unit = () val constructor = constructorMethod _ make[Unit].from(constructor) // SURPRISE: Will summon regular Int, not a "special" Int from DI object graph make[Unit].from(constructorMethod _) // Will work correctly: summon "special" Int
Prefer annotating parameter types, not parameters:
class X(i: Int @Id("special")) { ... }
case class X(i: Int @Id("special")) make[X].from(X.apply _) // summons special Int
Functoid forms an applicative functor via its izumi.distage.model.providers.Functoid.pure & izumi.distage.model.providers.Functoid#map2 methods
- See also
Functoid is based on the Magnet Pattern: http://spray.io/blog/2012-12-13-the-magnet-pattern/
Essentially Functoid is a function-like entity with additional properties, so it's funny name is reasonable enough: https://en.wiktionary.org/wiki/-oid#English
- final def from[I <: T](function: => I)(implicit arg0: Tag[I]): AfterBind
- final def from[I <: T](implicit arg0: ClassConstructor[I]): AfterBind
- final def fromEffect[F[_], I <: T](function: Functoid[F[I]])(implicit arg0: TagK[F], arg1: Tag[I]): AfterBind
- final def fromEffect[F[_], I <: T](instance: F[I])(implicit arg0: TagK[F], arg1: Tag[I]): AfterBind
Bind to a result of executing a purely-functional effect
Bind to a result of executing a purely-functional effect
Example:
import cats.effect.concurrent.Ref import cats.effect.IO make[Ref[IO, Int]].named("globalMutableCounter").fromEffect(Ref[IO](0))
- final def fromFactory[I <: T](implicit arg0: FactoryConstructor[I]): AfterBind
- See also
- final def fromResource[R0, R <: Lifecycle[LifecycleF, T]](function: Functoid[R0])(implicit adapt: Aux[R0, R], tag: LifecycleTag[R]): AfterBind
- final def fromResource[R](function: Functoid[R with Lifecycle[LifecycleF, T]])(implicit tag: LifecycleTag[R], d: DummyImplicit): AfterBind
- final def fromResource[R](instance: R with Lifecycle[LifecycleF, T])(implicit tag: LifecycleTag[R]): AfterBind
- final def fromResource[R <: Lifecycle[LifecycleF, T]](implicit arg0: ClassConstructor[R], tag: LifecycleTag[R]): AfterBind
Bind to result of acquiring a resource
Bind to result of acquiring a resource
The resource will be released when the izumi.distage.model.Locator holding it is released. Typically, after
.use
is called on the result of izumi.distage.model.Injector#produceYou can create resources with Lifecycle.make, by inheriting from Lifecycle or by converting an existing cats.effect.Resource
You can bind a cats.effect.Resource directly:
import cats.effect._ val myResource: Resource[IO, Unit] = Resource.make(IO(println("Acquiring!")))(IO(println("Releasing!"))) make[Unit].fromResource(myResource)
- See also
- cats.effect.Resource: https://typelevel.org/cats-effect/datatypes/resource.html
- final def fromTrait[I <: T](implicit arg0: TraitConstructor[I]): AfterBind
- See also
- final def fromValue[I <: T](instance: I)(implicit arg0: Tag[I]): AfterBind
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- 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
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def refEffect[F[_], I <: T, EFF <: F[I]](name: Identifier)(implicit arg0: TagK[F], arg1: Tag[I], arg2: Tag[EFF]): AfterBind
- final def refEffect[F[_], I <: T, EFF <: F[I]](implicit arg0: TagK[F], arg1: Tag[I], arg2: Tag[EFF]): AfterBind
- final def refEffect[F[_], I <: T](name: Identifier)(implicit arg0: TagK[F], arg1: Tag[I]): AfterBind
- final def refEffect[F[_], I <: T](implicit arg0: TagK[F], arg1: Tag[I]): AfterBind
Bind to result of executing an effect bound to a key at
F[I]
Bind to result of executing an effect bound to a key at
F[I]
This will execute the effect again for every
refEffect
bindingExample:
import cats.effect.concurrent.Ref import cats.effect.IO make[IO[Ref[IO, Int]]].named("counterFactory").from(Ref[IO](0)) // execute the effect bound above to key `DIKey.get[IO[Ref[IO, Int]]].named("counterFactory")` to create and bind a new Ref make[Ref[IO, Int]].named("globalCounter1") .refEffect[IO, Ref[IO, Int]]("counterFactory") make[Ref[IO, Int]].named("globalCounter2") .refEffect[IO, Ref[IO, Int]]("counterFactory") // globalCounter1 and globalCounter2 are two independent mutable references
- final def refResource[R <: Lifecycle[LifecycleF, T]](name: Identifier)(implicit tag: LifecycleTag[R]): AfterBind
- final def refResource[R <: Lifecycle[LifecycleF, T]](implicit tag: LifecycleTag[R]): AfterBind
Bind to a result of acquiring a resource bound to a key at
R
Bind to a result of acquiring a resource bound to a key at
R
This will acquire a NEW resource again for every
refResource
binding - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def todo(implicit pos: CodePositionMaterializer): AfterBind
Create a dummy binding that throws an exception with an error message when it's created.
Create a dummy binding that throws an exception with an error message when it's created.
Useful for prototyping.
- final def using[I <: T](name: Identifier)(implicit arg0: Tag[I]): AfterBind
- final def using[I <: T](implicit arg0: Tag[I]): AfterBind
Bind by reference to another bound key
Bind by reference to another bound key
Example:
trait T class T1 extends T make[T1] make[T].using[T1]
Here, only T1 will be created. A class that depends on
T
will receive an instance of T1 - final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()