com.ignition

Splitter

abstract class Splitter[T, R <: FlowRuntime] extends AbstractStep with SingleInputStep[T, R] with MultiOutputStep[T, R]

Linear Supertypes
MultiOutputStep[T, R], SingleInputStep[T, R], ConnectionTarget[T, R], Step[T, R], JsonExport, XmlExport, AbstractStep, Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Splitter
  2. MultiOutputStep
  3. SingleInputStep
  4. ConnectionTarget
  5. Step
  6. JsonExport
  7. XmlExport
  8. AbstractStep
  9. Serializable
  10. Serializable
  11. AnyRef
  12. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Splitter()

Type Members

  1. case class OutPort(index: Int) extends ConnectionSource[T, R] with Product with Serializable

    Definition Classes
    MultiOutputStep

Abstract Value Members

  1. abstract def compute(arg: T, index: Int)(implicit runtime: R): T

    Attributes
    protected
  2. abstract def outputCount: Int

    The number of output ports.

    The number of output ports.

    Definition Classes
    Step
  3. abstract def toJson: JValue

    Definition Classes
    JsonExport
  4. abstract def toXml: Elem

    Definition Classes
    XmlExport

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def -->(targets: ConnectionTarget[T, R]*): Unit

    Definition Classes
    MultiOutputStep
  5. def -->(tgt: MultiInputStep[T, R]): tgt.type

    Definition Classes
    MultiOutputStep
  6. def -->(tgt: ConnectionTarget[T, R]): tgt.type

    Definition Classes
    MultiOutputStep
  7. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  9. def addStepListener(listener: StepListener[T, R]): Unit

    Registers a new listener.

    Registers a new listener.

    Definition Classes
    Step
  10. def allInputsRequired: Boolean

    Specifies if the step should throw an error if one of the inputs is not connected.

    Specifies if the step should throw an error if one of the inputs is not connected.

    Definition Classes
    Step
  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def compute(index: Int)(implicit runtime: R): T

    Computes a step output value at the specified index.

    Computes a step output value at the specified index. This method is invoked from output() and can safely throw any exception, which will be wrapped into ExecutionException.

    index

    the output value index.

    Attributes
    protected
    Definition Classes
    SplitterStep
  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  16. final def evaluate(implicit runtime: R): IndexedSeq[T]

    Evaluates all step's outputs and returns a list of results.

    Evaluates all step's outputs and returns a list of results.

    Definition Classes
    Step
    Annotations
    @throws( classOf[ExecutionException] )
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def from(src: ConnectionSource[T, R]): Splitter.this.type

    Definition Classes
    ConnectionTarget
  19. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  21. val index: Int

    Definition Classes
    SingleInputStepConnectionTarget
  22. def input(implicit runtime: R): T

    Definition Classes
    SingleInputStep
  23. val inputCount: Int

    The maximum number of input ports.

    The maximum number of input ports.

    Definition Classes
    SingleInputStepStep
  24. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. val out: LazyArray[OutPort]

    Definition Classes
    MultiOutputStep
  29. def outbounds(index: Int): OutPort

    Definition Classes
    MultiOutputStep
  30. final def output(implicit runtime: R): T

    Shortcut for output(0).

    Shortcut for output(0). Computes a step output at index 0.

    Definition Classes
    Step
    Annotations
    @throws( classOf[ExecutionException] )
    Exceptions thrown
    ExecutionException

    in case of an error, or if the step is not connected.

  31. final def output(index: Int)(implicit runtime: R): T

    Computes a step output value at the specified index.

    Computes a step output value at the specified index.

    index

    the output value index.

    Definition Classes
    Step
    Annotations
    @throws( classOf[ExecutionException] )
    Exceptions thrown
    ExecutionException

    in case of an error, or if the step is not connected.

  32. def removeStepListener(listener: StepListener[T, R]): Unit

    Unregisters a listener.

    Unregisters a listener.

    Definition Classes
    Step
  33. def resetCache(predecessors: Boolean, descendants: Boolean): Unit

    Clears the cache of this step and optionally that of its predecessors and descendants.

    Clears the cache of this step and optionally that of its predecessors and descendants.

    Definition Classes
    Step
  34. val step: SingleInputStep[T, R]

    Definition Classes
    SingleInputStepConnectionTarget
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def to(targets: ConnectionTarget[T, R]*): Unit

    Definition Classes
    MultiOutputStep
  37. def to(tgt: MultiInputStep[T, R]): tgt.type

    Definition Classes
    MultiOutputStep
  38. def to(tgt: ConnectionTarget[T, R]): tgt.type

    Definition Classes
    MultiOutputStep
  39. def toString(): String

    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wrap[U](body: ⇒ U): U

    Wraps exceptions into ExecutionException instances.

    Wraps exceptions into ExecutionException instances.

    Attributes
    protected
    Definition Classes
    AbstractStep

Inherited from MultiOutputStep[T, R]

Inherited from SingleInputStep[T, R]

Inherited from ConnectionTarget[T, R]

Inherited from Step[T, R]

Inherited from JsonExport

Inherited from XmlExport

Inherited from AbstractStep

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped