package api

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed class AggWrapper extends AnyRef
  2. trait CompileProblemReporter extends AnyRef

    A listener trait for getting notified about compilation output like compiler warnings and errors

  3. class Ctx extends Dest with Log with Args with Home with Env with Workspace
  4. class FixSizedCache[T] extends KeyedLockedCache[T]

    Simple fixed size cache mainly intended for use in ZincWorkerImpl with the following properties - Elements are lazily initialized upon first access - Cached element ordering is preserved.

    Simple fixed size cache mainly intended for use in ZincWorkerImpl with the following properties - Elements are lazily initialized upon first access - Cached element ordering is preserved. The earliest available cache entry which is probably a compiler instance will always be returned first, and it will always be put back in the cache in the same position. This is important because each compiler instance is JITed independently. So with a stable ordering so we can bias towards reusing an already warm compiler.

  5. trait JsonFormatters extends AnyRef

    Defines various default JSON formatters used in mill.

  6. trait KeyedLockedCache[T] extends AnyRef

    A combination lock & cache; users provide a key, value-factory, and a body function to be called with the value.

    A combination lock & cache; users provide a key, value-factory, and a body function to be called with the value. KeyedLockedCache ensures that the body function is called with the computed/cached value sequentially.

  7. trait Logger extends AnyRef

    The standard logging interface of the Mill build tool.

    The standard logging interface of the Mill build tool.

    Contains these primary logging methods, in order of increasing importance:

    - debug : internal debug messages normally not shown to the user; mostly useful when debugging issues

    - ticker: short-lived logging output where consecutive lines over-write each other; useful for information which is transient and disposable

    - info: miscellaneous logging output which isn't part of the main output a user is looking for, but useful to provide context on what Mill is doing

    - error: logging output which represents problems the user should care about

    Also contains the two forwarded stdout and stderr streams, for code executed by Mill to use directly. Typically these correspond to the stdout and stderr, but when show is used both are forwarded to stderr and stdout is only used to display the final show output for easy piping.

  8. case class PathRef(path: Path, quick: Boolean, sig: Int) extends Product with Serializable

    A wrapper around os.Path that calculates it's hashcode based on the contents of the filesystem underneath it.

    A wrapper around os.Path that calculates it's hashcode based on the contents of the filesystem underneath it. Used to ensure filesystem changes can bust caches which are keyed off hashcodes.

  9. trait Problem extends AnyRef

    Contains general information about the build problem

  10. trait ProblemPosition extends AnyRef

    Indicates the exact location (source file, line, column) of the build problem

  11. sealed trait Result[+T] extends AnyRef

    The result of a task execution.

    The result of a task execution.

    T

    The result type of the computed task.

  12. sealed trait Severity extends AnyRef
  13. trait StreamSupport extends AnyRef
  14. trait TestReporter extends AnyRef

    Test reporter class that can be injected into the test task and report information upon the start and the finish of testing events

  15. class experimental extends Annotation with StaticAnnotation

    Annotation to mark experimental API, which is not guaranteed to stay.

  16. class internal extends Annotation with StaticAnnotation

    Annotation to mark internal API, which is not guaranteed to stay.

Deprecated Type Members

  1. trait BuildProblemReporter extends CompileProblemReporter
    Annotations
    @deprecated
    Deprecated

    (Since version mill after 0.10.0-M3) Use CompileProblemReporter instead

Value Members

  1. object ClassLoader
  2. object Ctx

    Provides access to various resources in the context of a currently execution Target.

  3. object DummyInputStream extends ByteArrayInputStream

    A dummy input stream containing an empty byte array.

  4. object DummyOutputStream extends OutputStream

    A dummy output stream that does nothing with what it consumes (think of it as /dev/null).

  5. object DummyTestReporter extends TestReporter

    Dummy Test Reporter that doesn't report anything for any testing event.

  6. case object Error extends Severity with Product with Serializable
  7. object IO extends StreamSupport

    Misc IO utilities, eventually probably should be pushed upstream into ammonite-ops

  8. case object Info extends Severity with Product with Serializable
  9. object JsonFormatters extends JsonFormatters
  10. object KeyedLockedCache
  11. object Loose extends AggWrapper
  12. object PathRef extends Serializable
  13. object Result
  14. object Strict extends AggWrapper
  15. case object Warn extends Severity with Product with Serializable

Ungrouped