Class

org.dsa.iot.rx

RxPipeline

Related Doc: package rx

Permalink

abstract class RxPipeline[R] extends AbstractRxBlock[R]

Wraps a structure of interconnected blocks and behaves as one block.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RxPipeline
  2. AbstractRxBlock
  3. Logging
  4. RxBlock
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RxPipeline()

    Permalink

Type Members

  1. case class Port[X](name: String) extends Product with Serializable

    Permalink

    Connector for attributes and inputs.

    Connector for attributes and inputs. Provides the input as Observable[X].

    Definition Classes
    AbstractRxBlock
  2. case class PortList[X](name: String) extends IndexedSeq[Port[X]] with Product with Serializable

    Permalink

    Connector for a list of attributes or inputs.

    Connector for a list of attributes or inputs.

    Definition Classes
    AbstractRxBlock

Abstract Value Members

  1. abstract val allBlocks: Iterable[RxBlock[_]]

    Permalink

    All blocks that comprise this pipeline.

    All blocks that comprise this pipeline.

    Attributes
    protected
  2. abstract def bindPorts(): Unit

    Permalink

    Called to bind the input ports of the pipeline to the input ports of its constituents.

    Called to bind the input ports of the pipeline to the input ports of its constituents.

    Attributes
    protected
  3. abstract val target: AbstractRxBlock[R]

    Permalink

    The block whose output is exposed as the pipeline's output.

    The block whose output is exposed as the pipeline's output.

    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val blocksToReset: Iterable[RxBlock[_]]

    Permalink

    The blocks that need to be reset each time the pipeline's reset method is called.

    The blocks that need to be reset each time the pipeline's reset method is called. By default, it is equal to allBlocks.

    Attributes
    protected
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def compute: Observable[R]

    Permalink

    Computes the target block's output.

    Computes the target block's output.

    Attributes
    protected
    Definition Classes
    RxPipelineAbstractRxBlock
  8. def debug(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def error(message: ⇒ String, err: Throwable): Unit

    Permalink
    Definition Classes
    Logging
  12. def error(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. val id: String

    Permalink

    Generates block's id for logging.

    Generates block's id for logging.

    Attributes
    protected
    Definition Classes
    AbstractRxBlock
  17. def info(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. def observe: Observable[R]

    Permalink

    The currently established Observable output.

    The currently established Observable output.

    Definition Classes
    AbstractRxBlockRxBlock
  23. lazy val output: Observable[R]

    Permalink

    Returns the block's output as an Observable.

    Returns the block's output as an Observable. This observable is stable in the sense that it keeps emitting items, whether the block has been reset, or its inputs changed etc., i.e. it never calls onError or onCompleted methods on its subscribers until the block's shutdown() method is called.

    Definition Classes
    AbstractRxBlockRxBlock
  24. def reset(): Unit

    Permalink

    Resets all internal blocks that need to be reset.

    Resets all internal blocks that need to be reset.

    Definition Classes
    RxPipelineAbstractRxBlockRxBlock
  25. def shutdown(): Unit

    Permalink

    Shuts down all its internal blocks.

    Shuts down all its internal blocks.

    Definition Classes
    RxPipelineAbstractRxBlockRxBlock
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def to[U](block: RxTransformer[_ >: R, U]): block.type

    Permalink

    Connects the output of this block to source input port of a transformer block.

    Connects the output of this block to source input port of a transformer block.

    Definition Classes
    AbstractRxBlock
  28. def to[T](port: Port[_ >: R]): owner.type

    Permalink

    Connects the output of this block to an input port of another block.

    Connects the output of this block to an input port of another block.

    Definition Classes
    AbstractRxBlock
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. def trace(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  31. def unsubsribeOutput(): Unit

    Permalink

    Cancels the output subscription.

    Cancels the output subscription.

    Attributes
    protected
    Definition Classes
    AbstractRxBlock
  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def warn(message: ⇒ String, err: Throwable): Unit

    Permalink
    Definition Classes
    Logging
  36. def warn(message: ⇒ String, args: Any*): Unit

    Permalink
    Definition Classes
    Logging
  37. def withEvents(name: String)(stream: Observable[R]): Observable[R]

    Permalink

    Decorates the observable by adding listeners for its lifecycle events.

    Decorates the observable by adding listeners for its lifecycle events.

    Attributes
    protected
    Definition Classes
    AbstractRxBlock
  38. def ~>[U](block: RxTransformer[_ >: R, U]): block.type

    Permalink

    Connects the output of this block to source input port of a transformer block.

    Connects the output of this block to source input port of a transformer block. An alias for to(block).

    Definition Classes
    AbstractRxBlock
  39. def ~>[T](port: Port[_ >: R]): AbstractRxBlock[T]

    Permalink

    Connects the output of this block to an input port of another block.

    Connects the output of this block to an input port of another block. An alias for to(port).

    Definition Classes
    AbstractRxBlock

Inherited from AbstractRxBlock[R]

Inherited from Logging

Inherited from RxBlock[R]

Inherited from AnyRef

Inherited from Any

Ungrouped