org.scaladebugger.api

pipelines

package pipelines

Visibility
  1. Public
  2. All

Type Members

  1. class CloseOperation[A] extends Operation[A, Unit]

    Represents an operation that closes the pipeline.

  2. class FilterNotOperation[A] extends Operation[A, A]

    Represents an operation that filters data in a pipeline.

  3. class FilterOperation[A] extends Operation[A, A]

    Represents an operation that filters data in a pipeline.

  4. class FlatMapOperation[A, B] extends Operation[A, B]

    Represents an operation that maps data to other values in a pipeline.

  5. class ForeachOperation[A] extends Operation[A, Unit]

    Represents an operation that maps data to other values in a pipeline.

  6. class MapOperation[A, B] extends Operation[A, B]

    Represents an operation that maps data to other values in a pipeline.

  7. class NoOperation[A] extends Operation[A, A]

    Represents an operation that does nothing (no-op).

  8. trait Operation[A, B] extends AnyRef

    Represents a single operation to be applied to data in a pipeline.

  9. class Pipeline[A, B] extends Closeable

    Represents a pipeline of instructions used to perform a series of operations over an arbitrary collection of data.

Value Members

  1. object Pipeline

    Contains helper utilities for pipeline creation.

Ungrouped