Packages

trait EffectedOutput[A] extends Effected[Output[A]] with Output[A]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EffectedOutput
  2. Output
  3. GopherAPIProvider
  4. Effected
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type write = A
    Definition Classes
    Output
  2. type writeExp[X] = A
    Definition Classes
    Output
  3. type ~> = A
    Definition Classes
    Output

Abstract Value Members

  1. abstract def apply(f: (Output[A]) => Output[A]): Unit
    Definition Classes
    Effected
  2. abstract def current: Output[A]
    Attributes
    protected
    Definition Classes
    Effected

Concrete Value Members

  1. macro def !(a: A): Unit

    shortcut for blocking write.

    shortcut for blocking write.

    Definition Classes
    Output
  2. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  3. final def ##: Int
    Definition Classes
    AnyRef → Any
  4. def :=(x: Output[A]): Unit
    Definition Classes
    Effected
    Annotations
    @inline()
  5. def <<=(f: (Output[A]) => Output[A]): Unit
    Definition Classes
    Effected
    Annotations
    @inline()
  6. macro def <~(a: A): Output[A]

    shortcut for blocking write.

    shortcut for blocking write.

    Definition Classes
    Output
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def api: GopherAPI
    Definition Classes
    EffectedOutputOutputGopherAPIProvider
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def awrite(a: A): Future[A]
    Definition Classes
    Output
  11. def awriteAll[C <: Iterable[A]](c: C): Future[Unit]
    Definition Classes
    Output
  12. def cbwrite[B](f: (ContWrite[A, B]) => Option[(A, Future[Continuated[B]])], ft: FlowTermination[B]): Unit

    apply f and send result to channels processor.

    apply f and send result to channels processor.

    Definition Classes
    EffectedOutputOutput
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def pam[B](g: (B) => A): Output[B]

    alias for premap

    alias for premap

    Definition Classes
    Output
  23. def premap[C](g: (C) => A): Output[C]

    before passing value to output, apply g to one.

    before passing value to output, apply g to one.

    Definition Classes
    Output
  24. def replace(x: Output[A]): Unit
    Definition Classes
    Effected
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. def unfold[S](s: S)(f: (S) => (S, A)): Unit
    Definition Classes
    Output
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. def withOutputTimeouts(timeout: FiniteDuration): (Output[A], Input[FiniteDuration])

    provide pair from Output and Input (ready, timeouts) such that writing to ready will case writing to output and if it was not completed during timeout than appropriative duration will be availabe in timeouts input.

    provide pair from Output and Input (ready, timeouts) such that writing to ready will case writing to output and if it was not completed during timeout than appropriative duration will be availabe in timeouts input.

    val (chReady, chTimeouts) = ch withOutputTimeouts (5 seconds) select.forever { case x: chReady.write if (x==somethingToWrite) => Console.println(s" ${x} send") case t: chTimeouts.read => Console.println(s"timeout during writing") }

    Definition Classes
    Output
  32. macro def write(a: A): A

    'blocking' write of 'a' to channel.

    'blocking' write of 'a' to channel. Note, that this method can be called only inside 'go' or 'async' blocks.

    Definition Classes
    Output
  33. macro def writeAll[C <: Iterable[A]](it: C): Unit
    Definition Classes
    Output

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Output[A]

Inherited from GopherAPIProvider

Inherited from Effected[Output[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped