object Commands
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Commands
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class About(cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
- case class Autocomplete(cliOptions: CliOptions = CliOptions.default, mode: Mode, format: Format, command: Option[String], project: Option[String]) extends RawCommand with Product with Serializable
-
case class
Bsp(protocol: BspProtocol = BspProtocol.Local, host: String = "127.0.0.1", port: Int = 5101, socket: Option[Path] = None, pipeName: Option[String] = None, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
- Annotations
- @CommandName( "bsp" )
- case class Clean(projects: List[String] = Nil, includeDependencies: Boolean = false, cascade: Boolean = false, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
-
trait
Command extends AnyRef
Represents the most generic command that exists.
- case class Compile(projects: List[String] = Nil, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, watch: Boolean = false, cascade: Boolean = false, cliOptions: CliOptions = CliOptions.default) extends CompilingCommand with Product with Serializable
- sealed trait CompilingCommand extends RawCommand
- case class Configure(threads: Int = 0, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
- case class Console(projects: List[String] = Nil, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, excludeRoot: Boolean = false, repl: ReplKind = AmmoniteRepl, ammoniteVersion: Option[String] = None, outFile: Option[Path] = None, cliOptions: CliOptions = CliOptions.default) extends CompilingCommand with Product with Serializable
- case class Help(cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
- case class Link(projects: List[String] = Nil, main: Option[String] = None, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, watch: Boolean = false, optimize: Option[OptimizerConfig] = None, cliOptions: CliOptions = CliOptions.default) extends LinkingCommand with Product with Serializable
- sealed trait LinkingCommand extends CompilingCommand
- case class Projects(dotGraph: Boolean = false, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
-
sealed
trait
RawCommand extends Command
Represents a command that is used by the cli and has no user input validation.
- case class Run(projects: List[String] = Nil, main: Option[String] = None, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, args: List[String] = Nil, watch: Boolean = false, skipJargs: Boolean = false, optimize: Option[OptimizerConfig] = None, cliOptions: CliOptions = CliOptions.default) extends LinkingCommand with Product with Serializable
- case class TcpBsp(host: InetAddress, port: Int, cliOptions: CliOptions) extends ValidatedBsp with Product with Serializable
- case class Test(projects: List[String] = Nil, includeDependencies: Boolean = false, cascade: Boolean = false, incremental: Boolean = true, pipeline: Boolean = false, only: List[String] = Nil, args: List[String] = Nil, reporter: ReporterKind = BloopReporter, watch: Boolean = false, cliOptions: CliOptions = CliOptions.default, parallel: Boolean = false) extends CompilingCommand with Product with Serializable
- case class UnixLocalBsp(socket: AbsolutePath, cliOptions: CliOptions) extends ValidatedBsp with Product with Serializable
- sealed trait ValidatedBsp extends ValidatedCommand
-
sealed
trait
ValidatedCommand extends Command
Represents a command that has gone through an initial layer of validation.
- case class WindowsLocalBsp(pipeName: String, cliOptions: CliOptions) extends ValidatedBsp with Product with Serializable