p
pipes
package pipes
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- pipes
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final class Batch[In <: InState, Out <: OutState] extends ObservableOp[FilesBatch, Batch[In, Out]]
- final case class BatchContext(inputDir: File, outputDir: File) extends Product with Serializable
- case class BatchFailure(file: File, reason: Throwable) extends BatchResult with Product with Serializable
- sealed trait BatchResult extends AnyRef
- final case class BatchStep(name: String, run: (BatchContext, Seq[File]) => Seq[BatchResult]) extends Product with Serializable
- case class BatchSuccess(file: File) extends BatchResult with Product with Serializable
- type FilesBatch = Seq[File]
- sealed trait InMissing extends InState
- sealed trait InPresent extends InState
- sealed trait InState extends AnyRef
- trait ObservableOp[A, Self] extends AnyRef
- sealed trait OutMissing extends OutState
- sealed trait OutPresent extends OutState
- sealed trait OutState extends AnyRef
- final class Pipe[In <: InState, Out <: OutState] extends ObservableOp[ImmutableImage, Pipe[In, Out]]
- implicit final class TransformationResultOps extends AnyVal
- final case class TransformationStep(name: String, run: (ImmutableImage) => ImmutableImage) extends Product with Serializable