Packages

abstract class Connector[Input] extends AnyRef

This is what connects the pipes together. Being more specific, the connectors are what connect the input data maps to Platforms. In the case of the example, this is what connects a together with AA, b together with BB, and c together with CC.

Input

The type of data that's being sent down the pipeline from this connector. In the case of the example, it would be bigglue.data.I[Int], as we're bringing in data from a in a:--AA-->b, b from b:--BB-->c, and c from c:-+CC+->d.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Connector
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Connector()

Abstract Value Members

  1. abstract def init(conf: PipeConfig): Unit
  2. abstract def reportUp(status: Status, data: Seq[Input]): Unit
  3. abstract def retrieveUp(): Seq[Input]
  4. abstract def sendDown(data: Seq[Input]): Unit
  5. abstract def sendDownModified(data: Seq[Input]): Unit
  6. abstract def size(): Int
  7. abstract def terminate(): Unit

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Connector[Input] to any2stringadd[Connector[Input]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def +>(connector: Connector[Input]): Connector[Input]
  5. def ->[B](y: B): (Connector[Input], B)
    Implicit
    This member is added by an implicit conversion from Connector[Input] to ArrowAssoc[Connector[Input]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. var downstreamConnectorOpt: Option[Connector[Input]]
  10. def ensuring(cond: (Connector[Input]) ⇒ Boolean, msg: ⇒ Any): Connector[Input]
    Implicit
    This member is added by an implicit conversion from Connector[Input] to Ensuring[Connector[Input]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (Connector[Input]) ⇒ Boolean): Connector[Input]
    Implicit
    This member is added by an implicit conversion from Connector[Input] to Ensuring[Connector[Input]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): Connector[Input]
    Implicit
    This member is added by an implicit conversion from Connector[Input] to Ensuring[Connector[Input]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): Connector[Input]
    Implicit
    This member is added by an implicit conversion from Connector[Input] to Ensuring[Connector[Input]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Connector[Input] to StringFormat[Connector[Input]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  19. def getDownstream(): Connector[Input]
  20. def getUpstream(): Connector[Input]
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  26. def persist(dataStore: DataStore[Input]): Unit
  27. def registerDownstreamConnector(connector: Connector[Input]): Unit
  28. def registerPlatform(platform: Platform): Unit

    This connects the platform to the connector so the connector sends stuff to the platform.

    This connects the platform to the connector so the connector sends stuff to the platform. As an implementation, this creates a dummy PlatformStub that's connected to the platform and makes that it's downstream connector.

    platform

    The platform that is being connected.

  29. def registerUpstreamConnector(connector: Connector[Input]): Unit
  30. def reportUp(status: Status, data: Input): Unit
  31. def sendDown(data: Input): Unit
  32. def sendDownModified(data: Input): Unit
  33. def signalDown(): Unit
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. var upstreamConnectorOpt: Option[Connector[Input]]
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def [B](y: B): (Connector[Input], B)
    Implicit
    This member is added by an implicit conversion from Connector[Input] to ArrowAssoc[Connector[Input]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Connector[Input] to any2stringadd[Connector[Input]]

Inherited by implicit conversion StringFormat from Connector[Input] to StringFormat[Connector[Input]]

Inherited by implicit conversion Ensuring from Connector[Input] to Ensuring[Connector[Input]]

Inherited by implicit conversion ArrowAssoc from Connector[Input] to ArrowAssoc[Connector[Input]]

Ungrouped