Trait

play.api.libs.iteratee.Concurrent

Channel

Related Doc: package Concurrent

Permalink

trait Channel[E] extends AnyRef

A channel for imperative style feeding of input into one or more iteratees.

Source
Concurrent.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Channel
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def end(): Unit

    Permalink

    End the input for this channel.

    End the input for this channel. This results in any promises that the enumerator associated with this channel produced being redeemed.

    Note that an EOF won't be sent, so any iteratees consuming this channel will still be able to consume input (if they are in the cont state).

    Calling this multiple times is ok. In the case of a broadcast enumerator, any iteratees that are attached after one of the end methods on this channel are invoked will be redeemed according to the most recent invocation, that is, subsequent calls to end will change the behaviour of attaching new iteratees to the broadcast enumerator.

  2. abstract def end(e: Throwable): Unit

    Permalink

    Send a failure to this channel.

    Send a failure to this channel. This results in any promises that the enumerator associated with this channel produced being redeemed with a failure.

    Calling this multiple times is ok. In the case of a broadcast enumerator, any iteratees that are attached after one of the end methods on this channel are invoked will be redeemed according to the most recent invocation, that is, subsequent calls to end will change the behaviour of attaching new iteratees to the broadcast enumerator.

    e

    The failure.

  3. abstract def push(chunk: Input[E]): Unit

    Permalink

    Push an input chunk into this channel

    Push an input chunk into this channel

    chunk

    The chunk to push

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. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def eofAndEnd(): Unit

    Permalink

    Send an EOF to the channel, and then end the input for the channel.

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  16. def push(item: E): Unit

    Permalink

    Push an item into this channel

    Push an item into this channel

    item

    The item to push

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

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped