p

mill

api

package api

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. sealed class AggWrapper extends AnyRef
  2. class Ctx extends Dest with Log with Args with Home with Env
  3. trait JsonFormatters extends AnyRef

    Defines various default JSON formatters used in mill.

  4. 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.

  5. 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.

  6. 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.

  7. 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.

  8. trait StreamSupport extends AnyRef

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 IO extends StreamSupport

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

  6. object JsonFormatters extends JsonFormatters
  7. object KeyedLockedCache
  8. object Loose extends AggWrapper
  9. object PathRef extends Serializable
  10. object Result
  11. object Strict extends AggWrapper

Ungrouped