colossus.controller

InfinitePipe

class InfinitePipe[T] extends Pipe[T, T]

Linear Supertypes
Pipe[T, T], Source[T], Sink[T], Transport, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InfinitePipe
  2. Pipe
  3. Source
  4. Sink
  5. Transport
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InfinitePipe()

Type Members

  1. case class Dead(reason: Throwable) extends State with Product with Serializable

  2. case class Full(trigger: Trigger) extends State with Product with Serializable

  3. case class Pulling(callback: (Try[Option[T]]) ⇒ Unit) extends State with Product with Serializable

  4. sealed trait State extends AnyRef

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def ++(next: Source[T]): Source[T]

    Definition Classes
    Source
  4. def ->>[V, W](pipe: Pipe[V, W])(f: (T) ⇒ Seq[V]): Pipe[T, W]

    Definition Classes
    Pipe
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. object Closed extends State with Product with Serializable

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def complete(): Unit

    Definition Classes
    InfinitePipeSink
  10. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def fold[U](init: U)(cb: (T, U) ⇒ U): Callback[U]

    Definition Classes
    Source
  14. def foldWhile[U](init: U)(cb: (T, U) ⇒ U)(f: (U) ⇒ Boolean): Callback[U]

    Definition Classes
    Source
  15. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  17. def isClosed: Boolean

  18. def isFull: Boolean

    Definition Classes
    InfinitePipeSink
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def join[V, W](pipe: Pipe[V, W])(f: (T) ⇒ Seq[V]): Pipe[T, W]

    Definition Classes
    Pipe
  21. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  24. def pull(whenReady: (Try[Option[T]]) ⇒ Unit): Unit

    Request the next value from the pipe

    Request the next value from the pipe

    Only one value can be requested at a time. Also there can only be one outstanding request at a time.

    Definition Classes
    InfinitePipeSource
  25. def pullCB(): Callback[Option[T]]

    Definition Classes
    Source
  26. def push(item: T): PushResult

    Attempt to push a value into the pipe.

    Attempt to push a value into the pipe.

    The value will only be successfully pushed only if there has already a been a request for data on the pulling side. In other words, the pipe will never interally queue a value.

    returns

    the result of the push

    Definition Classes
    InfinitePipeSink
    Exceptions thrown
    PipeException

    when pushing to a full pipe

  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def terminate(reason: Throwable): Unit

    Definition Classes
    InfinitePipeTransport
  29. def terminated: Boolean

    Definition Classes
    InfinitePipeTransport
  30. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Pipe[T, T]

Inherited from Source[T]

Inherited from Sink[T]

Inherited from Transport

Inherited from AnyRef

Inherited from Any

Ungrouped