Packages

  • package root
    Definition Classes
    root
  • package izumi
    Definition Classes
    root
  • package distage
    Definition Classes
    izumi
  • package roles
    Definition Classes
    distage
  • abstract class RoleAppMain[F[_]] extends RoleCheckableApp[F]

    Create a launcher for role-based applications by extending this in a top-level object

    Create a launcher for role-based applications by extending this in a top-level object

    Definition Classes
    roles
    Example:
    1. import izumi.distage.framework.RoleAppMain
      import izumi.distage.plugins.PluginConfig
      
      object RoleLauncher extends RoleAppMain.LauncherBIO[zio.IO] {
      
        override def pluginConfig: PluginConfig = {
          PluginConfig.cached(pluginsPackage = "my.example.app.plugins")
        }
      
      }
    See also

    Roles

    Plugins

  • PlanCheck

class PlanCheck[Cfg <: Any] extends Main[RoleAppMain.this.type, Cfg]

Shortcut for izumi.distage.framework.PlanCheck.Main

object WiringTest extends MyApp.PlanCheck(PlanCheckConfig(...))

same as

object WiringTest extends PlanCheck.Main(MyApp, PlanCheckConfig(...))
Linear Supertypes
Main[RoleAppMain.this.type, Cfg], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PlanCheck
  2. Main
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PlanCheck(cfg: Cfg = PlanCheckConfig.empty)(implicit planCheck: PlanCheckMaterializer[RoleAppMain.this.type, Cfg])

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def assertAgainAtRuntime(): Unit
    Definition Classes
    Main
  6. def checkAgainAtRuntime(): PlanCheckResult
    Definition Classes
    Main
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def main(args: Array[String]): Unit
    Definition Classes
    Main
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. implicit val planCheck: PlanCheckMaterializer[RoleAppMain.this.type, Cfg]
    Definition Classes
    Main
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def assertAtRuntime(): Unit
    Definition Classes
    Main
    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Renamed to assertAgainAtRuntime

  2. def checkAtRuntime(): PlanCheckResult
    Definition Classes
    Main
    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Renamed to checkAgainAtRuntime

Inherited from Main[RoleAppMain.this.type, Cfg]

Inherited from AnyRef

Inherited from Any

Ungrouped