case class ParallelPartialPipes[Input <: Identifiable[Input], LEnd <: Identifiable[LEnd], REnd <: Identifiable[REnd]](p1: PartialPipe[Input, LEnd], p2: PartialPipe[Input, REnd]) extends PartialPipe[Input, Either[LEnd, REnd]] with Product with Serializable
- Alphabetic
- By Inheritance
- ParallelPartialPipes
- Serializable
- Serializable
- Product
- Equals
- PartialPipe
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ParallelPartialPipes(p1: PartialPipe[Input, LEnd], p2: PartialPipe[Input, REnd])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to any2stringadd[ParallelPartialPipes[Input, LEnd, REnd]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (ParallelPartialPipes[Input, LEnd, REnd], B)
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to ArrowAssoc[ParallelPartialPipes[Input, LEnd, REnd]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
def
:-+[Next <: Identifiable[Next], Mid <: Identifiable[Mid]](other: PartialReducerPipe[Either[LEnd, REnd], Mid, Next]): PartialPipe[Input, Next]
- Definition Classes
- PartialPipe
-
def
:--[Next <: Identifiable[Next], Mid <: Identifiable[Mid]](other: PartialMapperPipe[Either[LEnd, REnd], Mid, Next]): PartialPipe[Input, Next]
- Definition Classes
- PartialPipe
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
check(conf: PipeConfig, input: DataStore[Input]): Unit
This is called within the example with pipe.check(conf).
This is called within the example with pipe.check(conf). In basic terms, this checks to see whether the pipeline that we have created is valid.
- conf
The configuration file that we are checking with.
- Definition Classes
- ParallelPartialPipes → PartialPipe
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
end(): DataStore[Either[LEnd, REnd]]
This is the data store at the end of the pipeline.
This is the data store at the end of the pipeline.
- returns
The data store at the end of the pipeline.
- Definition Classes
- ParallelPartialPipes → PartialPipe
-
def
ensuring(cond: (ParallelPartialPipes[Input, LEnd, REnd]) ⇒ Boolean, msg: ⇒ Any): ParallelPartialPipes[Input, LEnd, REnd]
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to Ensuring[ParallelPartialPipes[Input, LEnd, REnd]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (ParallelPartialPipes[Input, LEnd, REnd]) ⇒ Boolean): ParallelPartialPipes[Input, LEnd, REnd]
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to Ensuring[ParallelPartialPipes[Input, LEnd, REnd]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): ParallelPartialPipes[Input, LEnd, REnd]
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to Ensuring[ParallelPartialPipes[Input, LEnd, REnd]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): ParallelPartialPipes[Input, LEnd, REnd]
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to Ensuring[ParallelPartialPipes[Input, LEnd, REnd]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to StringFormat[ParallelPartialPipes[Input, LEnd, REnd]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
init(conf: PipeConfig, input: DataStore[Input]): Unit
This is called with the example with pipe.init(conf).
This is called with the example with pipe.init(conf). This initializes the pipeline and all of the parts within it.
- conf
The configuration file that we are initializing with. This ideally is the configuration file that is being used to check the pipeline.
- Definition Classes
- ParallelPartialPipes → PartialPipe
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- val p1: PartialPipe[Input, LEnd]
- val p2: PartialPipe[Input, REnd]
-
def
persist(): Unit
This starts/restarts the pipeline.
This starts/restarts the pipeline.
- Definition Classes
- ParallelPartialPipes → PartialPipe
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
terminate(): Unit
- Definition Classes
- ParallelPartialPipes → PartialPipe
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
~[Other <: Identifiable[Other]](other: PartialPipe[Input, Other]): PartialPipe[Input, Either[Either[LEnd, REnd], Other]]
- Definition Classes
- PartialPipe
-
def
→[B](y: B): (ParallelPartialPipes[Input, LEnd, REnd], B)
- Implicit
- This member is added by an implicit conversion from ParallelPartialPipes[Input, LEnd, REnd] to ArrowAssoc[ParallelPartialPipes[Input, LEnd, REnd]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc