Packages

case class Cli(configFiles: Seq[File] = Seq(), configMap: Map[String, String] = Map(), command: Option[Command] = None, noTty: Boolean = false, levelRoot: Option[Level] = None, levelCanton: Option[Level] = None, levelStdout: Level = Level.WARN, logFileAppender: LogFileAppender = LogFileAppender.Rolling, logFileRollingPattern: Option[String] = None, logFileHistory: Option[Int] = None, logTruncate: Boolean = false, logFileName: Option[String] = None, logEncoder: LogEncoder = LogEncoder.Plain, logLastErrors: Boolean = true, logLastErrorsFileName: Option[String] = None, logImmediateFlush: Option[Boolean] = None, bootstrapScriptPath: Option[File] = None, manualStart: Boolean = false, autoConnectLocal: Boolean = false) extends Product with Serializable

CLI Options

configFiles

Configuration files to load

command

Command specification to perform a particular action

noTty

Do we know the process does not have access to a tty? Used for disabling rich REPL input for environments where it may not be available (e.g. docker, IntelliJ)

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Cli
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Cli(configFiles: Seq[File] = Seq(), configMap: Map[String, String] = Map(), command: Option[Command] = None, noTty: Boolean = false, levelRoot: Option[Level] = None, levelCanton: Option[Level] = None, levelStdout: Level = Level.WARN, logFileAppender: LogFileAppender = LogFileAppender.Rolling, logFileRollingPattern: Option[String] = None, logFileHistory: Option[Int] = None, logTruncate: Boolean = false, logFileName: Option[String] = None, logEncoder: LogEncoder = LogEncoder.Plain, logLastErrors: Boolean = true, logLastErrorsFileName: Option[String] = None, logImmediateFlush: Option[Boolean] = None, bootstrapScriptPath: Option[File] = None, manualStart: Boolean = false, autoConnectLocal: Boolean = false)

    configFiles

    Configuration files to load

    command

    Command specification to perform a particular action

    noTty

    Do we know the process does not have access to a tty? Used for disabling rich REPL input for environments where it may not be available (e.g. docker, IntelliJ)

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. val autoConnectLocal: Boolean
  6. val bootstrapScriptPath: Option[File]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. val command: Option[Command]
  9. val configFiles: Seq[File]
  10. val configMap: Map[String, String]
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def installLogging(): Unit

    sets the properties our logback.xml is looking for

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. val levelCanton: Option[Level]
  16. val levelRoot: Option[Level]
  17. val levelStdout: Level
  18. val logEncoder: LogEncoder
  19. val logFileAppender: LogFileAppender
  20. val logFileHistory: Option[Int]
  21. val logFileName: Option[String]
  22. val logFileRollingPattern: Option[String]
  23. val logImmediateFlush: Option[Boolean]
  24. val logLastErrors: Boolean
  25. val logLastErrorsFileName: Option[String]
  26. val logTruncate: Boolean
  27. val manualStart: Boolean
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. val noTty: Boolean
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. def productElementNames: Iterator[String]
    Definition Classes
    Product
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped