abstract class LauncherCats[F[_]] extends RoleAppMain[F]
- Alphabetic
- By Inheritance
- LauncherCats
- RoleAppMain
- RoleCheckableApp
- CheckableApp
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new LauncherCats()(implicit arg0: TagK[F], arg1: Async[F], arg2: DefaultModule[F], artifact: IzArtifactMaterializer)
Type Members
- final type AppEffectType[A] = F[A]
- Definition Classes
- RoleCheckableApp → CheckableApp
- class PlanCheck[Cfg <: Any] extends Main[RoleAppMain.this.type, Cfg]
Shortcut for izumi.distage.framework.PlanCheck.Main
Shortcut for izumi.distage.framework.PlanCheck.Main
object WiringTest extends MyApp.PlanCheck(PlanCheckConfig(...))
same as
object WiringTest extends PlanCheck.Main(MyApp, PlanCheckConfig(...))
- Definition Classes
- RoleAppMain
Abstract Value Members
- abstract def pluginConfig: PluginConfig
- Attributes
- protected
- Definition Classes
- RoleAppMain
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
- implicit val artifact: IzArtifactMaterializer
- Definition Classes
- RoleAppMain
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def assertAppCompileTime[Cfg <: Any](cfg: Cfg = PlanCheckConfig.empty)(implicit planCheck: PlanCheckMaterializer[LauncherCats.this.type, Cfg]): PlanCheckMaterializer[LauncherCats.this.type, Cfg]
- Definition Classes
- RoleAppMain
- See also
- def bootstrapPluginConfig: PluginConfig
- Attributes
- protected
- Definition Classes
- RoleAppMain
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- implicit val defaultModule: DefaultModule[F]
- Definition Classes
- RoleAppMain
- def earlyFailureHandler(args: ArgV): AppFailureHandler
- Attributes
- protected
- Definition Classes
- RoleAppMain
- 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 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
- def main(args: Array[String]): Unit
- Definition Classes
- RoleAppMain
- 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()
- def preparePlanCheckInput(selectedRoles: RoleSelection, chosenConfigFile: Option[String]): PlanCheckInput[F]
- Definition Classes
- RoleCheckableApp → CheckableApp
- def replLocator(args: String*)(implicit F: QuasiIO[F]): F[Locator]
Create an object graph for inspection in the REPL:
Create an object graph for inspection in the REPL:
scala> val graph = Launcher.replLocator("-u", "mode:test", ":role1") val graph: izumi.fundamentals.platform.functional.Identity[izumi.distage.model.Locator] = izumi.distage.LocatorDefaultImpl@6f6a2ac8 scala> val testObj = graph.get[Hello] val testObj: example.Hellower = example.Hellower@25109d84 scala> testObj.hello("test") Hello test!
- Definition Classes
- RoleAppMain
- Note
All resources will be leaked. Use replLocatorWithClose if you need resource cleanup within a REPL session.
- def replLocatorWithClose(args: String*)(implicit F: QuasiIO[F]): F[(Locator, () => F[Unit])]
- Definition Classes
- RoleAppMain
- def requiredRoles(argv: ArgV): Vector[RawRoleParams]
Roles always enabled in this RoleAppMain
Roles always enabled in this RoleAppMain
- Attributes
- protected
- Definition Classes
- RoleAppMain
- def roleAppBootModule(argv: ArgV, additionalRoles: RequiredRoles): Module
- Definition Classes
- RoleAppMain
- See also
izumi.distage.roles.RoleAppBootModule for initial values
- def roleAppBootModule(argv: ArgV): Module
- Definition Classes
- RoleAppMain
- final def roleAppBootModule: Module
- Definition Classes
- RoleAppMain → RoleCheckableApp
- final def roleAppBootModulePlanCheckOverrides(chosenRoles: RoleSelection, chosenConfigResource: Option[(ClassLoader, String)]): ModuleDef
- Attributes
- protected[this]
- Definition Classes
- RoleCheckableApp
- def roleAppBootOverrides(argv: ArgV): Module
Overrides applied to roleAppBootModule
Overrides applied to roleAppBootModule
- Attributes
- protected
- Definition Classes
- RoleAppMain
- Note
Bootstrap Injector will always run under Identity, other effects (cats.effect.IO, zio.IO) are not available at this stage.
,The components added here are visible during the creation of the app, but *not inside* the app, to override components *inside* the app, use
pluginConfig
& izumi.distage.plugins.PluginConfig#overriddenBy:override def pluginConfig: PluginConfig = { super.pluginConfig overriddenBy new PluginDef { make[MyComponentX]] } }
- See also
izumi.distage.roles.RoleAppBootModule for initial values of roleAppBootModule
- def shutdownStrategy: AppShutdownStrategy[F]
- Attributes
- protected
- Definition Classes
- LauncherCats → RoleAppMain
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- implicit val tagK: TagK[F]
- Definition Classes
- RoleAppMain → RoleCheckableApp → CheckableApp
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unusedValidAxisChoices: Set[AxisChoice]
Allow to set these axis choices in config even if they're not used in the application Normally, an axis choice specified in config, but never used would be deemed an error.
Allow to set these axis choices in config even if they're not used in the application Normally, an axis choice specified in config, but never used would be deemed an error.
- Attributes
- protected
- Definition Classes
- RoleAppMain
- 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()