abstract class BinaryPlatform[InputL <: Identifiable[InputL], InputR <: Identifiable[InputR], Output <: Identifiable[Output]] extends Platform with BinaryChecker[InputL, InputR, Output]
- Alphabetic
- By Inheritance
- BinaryPlatform
- BinaryChecker
- OutputStoreChecker
- InputStoresChecker
- ConfigChecker
- Platform
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new BinaryPlatform()
Abstract Value Members
-
abstract
def
terminate(): Unit
- Definition Classes
- Platform
-
abstract
def
wake(): Unit
This function is called when the upstream connector lets the platform know that there's data to be computed.
This function is called when the upstream connector lets the platform know that there's data to be computed.
- Definition Classes
- Platform
Concrete 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 BinaryPlatform[InputL, InputR, Output] to any2stringadd[BinaryPlatform[InputL, InputR, Output]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (BinaryPlatform[InputL, InputR, Output], B)
- Implicit
- This member is added by an implicit conversion from BinaryPlatform[InputL, InputR, Output] to ArrowAssoc[BinaryPlatform[InputL, InputR, Output]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
check(conf: PipeConfig, inputLMap: DataStore[InputL], inputRMap: DataStore[InputR], outputMap: DataStore[Output]): Unit
Check routine for binary data processors
Check routine for binary data processors
- conf
the config file to check
- inputLMap
the left input store to check
- inputRMap
the right input store to check
- outputMap
the output store to check
- Definition Classes
- BinaryChecker
-
def
checkConfig(conf: PipeConfig): Unit
Check that paths in configuration file relevant to host class are well-formed.
Check that paths in configuration file relevant to host class are well-formed. Default does nothing.
- conf
the config file to check
- Definition Classes
- ConfigChecker
-
def
checkInputL(inputLMap: DataStore[InputL]): Unit
Check that left input store is compatible with the host class.
Check that left input store is compatible with the host class. Default does nothing.
- inputLMap
the input store to check
- Definition Classes
- InputStoresChecker
-
def
checkInputR(inputRMap: DataStore[InputR]): Unit
Check that right input store is compatible with the host class.
Check that right input store is compatible with the host class. Default does nothing.
- inputRMap
the input store to check
- Definition Classes
- InputStoresChecker
-
def
checkOutput(outputMap: DataStore[Output]): Unit
Check that output store is compatible with the host class.
Check that output store is compatible with the host class. Default does nothing.
- outputMap
the output store to check
- Definition Classes
- OutputStoreChecker
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
var
computationOpt: Option[Computation]
What computation this platform ends up running.
What computation this platform ends up running. (Mapper, Reducer, PairwiseComposer) This ends up being set in init() by both UnaryPlatform and BinaryPlatform.
- Definition Classes
- Platform
-
def
ensuring(cond: (BinaryPlatform[InputL, InputR, Output]) ⇒ Boolean, msg: ⇒ Any): BinaryPlatform[InputL, InputR, Output]
- Implicit
- This member is added by an implicit conversion from BinaryPlatform[InputL, InputR, Output] to Ensuring[BinaryPlatform[InputL, InputR, Output]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (BinaryPlatform[InputL, InputR, Output]) ⇒ Boolean): BinaryPlatform[InputL, InputR, Output]
- Implicit
- This member is added by an implicit conversion from BinaryPlatform[InputL, InputR, Output] to Ensuring[BinaryPlatform[InputL, InputR, Output]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): BinaryPlatform[InputL, InputR, Output]
- Implicit
- This member is added by an implicit conversion from BinaryPlatform[InputL, InputR, Output] to Ensuring[BinaryPlatform[InputL, InputR, Output]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): BinaryPlatform[InputL, InputR, Output]
- Implicit
- This member is added by an implicit conversion from BinaryPlatform[InputL, InputR, Output] to Ensuring[BinaryPlatform[InputL, InputR, Output]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- var errorLeftCuratorOpt: Option[ErrorCurator[InputL]]
- var errorPairCuratorOpt: Option[ErrorCurator[Pair[InputL, InputR]]]
- var errorRightCuratorOpt: Option[ErrorCurator[InputR]]
-
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 BinaryPlatform[InputL, InputR, Output] to StringFormat[BinaryPlatform[InputL, InputR, Output]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- def getInputLMap(): DataStore[InputL]
- def getInputRMap(): DataStore[InputR]
- def getInputs(): (Seq[InputL], Seq[InputR], Seq[Pair[InputL, InputR]])
- def getLeftErrorCurator(): ErrorCurator[InputL]
- def getOutputMap(): DataStore[Output]
- def getPairConnector(): Connector[Pair[InputL, InputR]]
- def getPairErrorCurator(): ErrorCurator[Pair[InputL, InputR]]
- def getProvenanceCurator(): ProvenanceCurator[Pair[InputL, InputR], Output]
- def getRightErrorCurator(): ErrorCurator[InputR]
- def getUpstreamLConnector(): Connector[InputL]
- def getUpstreamRConnector(): Connector[InputR]
- def getVersionCurator(): VersionCurator[Output]
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- def init(conf: PipeConfig, inputLMap: DataStore[InputL], inputRMap: DataStore[InputR], outputMap: DataStore[Output], builder: PlatformBuilder): Unit
- def initConnectors(conf: PipeConfig, builder: PlatformBuilder): Unit
- var inputLMapOpt: Option[DataStore[InputL]]
- var inputRMapOpt: Option[DataStore[InputR]]
-
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
- var outputMapOpt: Option[DataStore[Output]]
- var pairConnectorOpt: Option[Connector[Pair[InputL, InputR]]]
-
def
persist(): Unit
This is called by the computation's persist step.
This is called by the computation's persist step. In particular, this tends to see how much of the data set actually needs to be re-sent.
- Definition Classes
- BinaryPlatform → Platform
- var provenanceCuratorOpt: Option[ProvenanceCurator[Pair[InputL, InputR], Output]]
-
def
run(): Unit
- Definition Classes
- Platform
-
def
setComputation(computation: Computation): Platform
This ends up being called in the init step of the Mapper, Reducer, or PairwiseComposer This links the actual computation and platform together.
This ends up being called in the init step of the Mapper, Reducer, or PairwiseComposer This links the actual computation and platform together.
- computation
The computation that is linked with the platform. (This is usually called through platform.setComputation(this))
- Definition Classes
- Platform
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- var upstreamLConnectorOpt: Option[Connector[InputL]]
- var upstreamRConnectorOpt: Option[Connector[InputR]]
- var versionCuratorOpt: Option[VersionCurator[Output]]
-
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
→[B](y: B): (BinaryPlatform[InputL, InputR, Output], B)
- Implicit
- This member is added by an implicit conversion from BinaryPlatform[InputL, InputR, Output] to ArrowAssoc[BinaryPlatform[InputL, InputR, Output]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc