com.fsist.stream.run

RunningStream

Related Doc: package run

class RunningStream extends AnyRef

An actual stream (or general graph). Once an instance exists, it is already running.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RunningStream
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RunningStream(builder: FutureStreamBuilder, components: Map[ComponentId, RunningStreamComponent], connectors: Map[ConnectorId[_], RunningConnector[_]], graphOps: GraphOps)(implicit ec: ExecutionContext)

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def apply[T](connector: Connector[T]): RunningConnector[T]

  5. def apply[In, Out](transform: Transform[In, Out]): RunningTransform[In, Out]

  6. def apply[Out](input: StreamInput[Out]): RunningInput[Out]

  7. def apply[In, Res](output: StreamOutput[In, Res]): RunningOutput[In, Res]

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. val builder: FutureStreamBuilder

  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def completion: Future[Unit]

    Completes when all stream components have completed (as exposed by their completion future).

    Completes when all stream components have completed (as exposed by their completion future).

    NOTE: if the graph fails, this future may complete (with a failure) before all component onError methods have been called or competed. It is guaranteed to complete even if some components' onNext never return and so their onError is never called.

  12. val components: Map[ComponentId, RunningStreamComponent]

  13. val connectors: Map[ConnectorId[_], RunningConnector[_]]

  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  16. def fail(throwable: Throwable): Unit

    Fails the running stream by injecting an exception from outside.

    Fails the running stream by injecting an exception from outside.

    All stream components that have not yet completed will get a call to onError. All completion and result Futures that have not yet completed will be failed with this throwable.

    Due to race conditions, some onNext methods may be called in parallel or slightly after onError for the same components, and after the completion future of the entire stream has been failed.

  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def get[T](connector: Connector[T]): Option[RunningConnector[T]]

  19. def get[In, Out](transform: Transform[In, Out]): Option[RunningTransform[In, Out]]

  20. def get[Out](input: StreamInput[Out]): Option[RunningInput[Out]]

  21. def get[In, Res](output: StreamOutput[In, Res]): Option[RunningOutput[In, Res]]

  22. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  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. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped