o

bloop.engine

BuildLoader

object BuildLoader

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BuildLoader
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def load(configDir: AbsolutePath, logger: Logger): Task[List[Project]]

    Load all the projects from configDir in a parallel, lazy fashion via monix Task.

    Load all the projects from configDir in a parallel, lazy fashion via monix Task.

    configDir

    The base directory from which to load the projects.

    logger

    The logger that collects messages about project loading.

    returns

    The list of loaded projects.

  2. def loadBuildFromConfigurationFiles(configDir: AbsolutePath, configFiles: List[ReadConfiguration], logger: Logger): Task[List[Project]]

    Load only the projects passed as arguments.

    Load only the projects passed as arguments.

    logger

    The logger that collects messages about project loading.

    returns

    The list of loaded projects.

  3. def loadSynchronously(configDir: AbsolutePath, logger: Logger): List[Project]

    Load all the projects from configDir synchronously.

    Load all the projects from configDir synchronously.

    configDir

    The base directory from which to load the projects.

    logger

    The logger that collects messages about project loading.

    returns

    The list of loaded projects.

  4. def readConfigurationFilesInBase(base: AbsolutePath, logger: Logger): List[AttributedPath]

    Returns all the tracked files inside this directory, associated with their last modification time.

    Returns all the tracked files inside this directory, associated with their last modification time.

    base

    The base file or directory to track.

    returns

    A map associating each tracked file with its last modification time.