Package

molecule

stream

Permalink

package stream

Stream channel interfaces

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

Type Members

  1. abstract class IChan[+A] extends AnyRef

    Permalink

    A stream input channel.

    A stream input channel.

    A

    the type of the input's messages

  2. abstract class OChan[-A] extends AnyRef

    Permalink

    A stream output channel.

    A stream output channel.

    A

    the type of the output's messages

Value Members

  1. object IChan

    Permalink

    Companion object for stream input channels

  2. object OChan

    Permalink
  3. package ichan

    Permalink
  4. implicit def liftIChan[A](ch: channel.IChan[A])(implicit arg0: Message[A]): IChan[A]

    Permalink

    Create a stream input channel from a system input channel.

    Create a stream input channel from a system input channel.

    ch

    the system-level channel

    returns

    the stream channel

  5. implicit def liftOChan[A](ch: channel.OChan[A])(implicit arg0: Message[A]): OChan[A]

    Permalink

    Create a stream output channel from a system output channel.

    Create a stream output channel from a system output channel.

    ch

    the system-level channel

    returns

    the stream output channel

  6. implicit def liftOChanFactory[A](factory: OChanFactory[A])(implicit arg0: Message[A]): OChanFactory[A]

    Permalink
  7. package ochan

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped