Class/Object

gopher.Transputer

OutPort

Related Docs: object OutPort | package Transputer

Permalink

class OutPort[A] extends Output[A]

Linear Supertypes
Output[A], GopherAPIProvider, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OutPort
  2. Output
  3. GopherAPIProvider
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OutPort(output: Output[A])

    Permalink

Type Members

  1. type write = A

    Permalink
    Definition Classes
    Output
  2. type writeExp[X] = A

    Permalink
    Definition Classes
    Output
  3. type ~> = A

    Permalink
    Definition Classes
    Output

Value Members

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

    Permalink

    shortcut for blocking write.

    shortcut for blocking write.

    Definition Classes
    Output
  2. final def !=(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def *!: Input[A]

    Permalink
  5. macro def <~(a: A): Output[A]

    Permalink

    shortcut for blocking write.

    shortcut for blocking write.

    Definition Classes
    Output
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. def >~~>(x: InPort[A]): Unit

    Permalink
  8. def api: GopherAPI

    Permalink
    Definition Classes
    OutPortOutputGopherAPIProvider
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def awrite(a: A): Future[A]

    Permalink
    Definition Classes
    Output
  11. def awriteAll[C <: Iterable[A]](c: C): Future[Unit]

    Permalink
    Definition Classes
    Output
  12. def cbwrite[B](f: (ContWrite[A, B]) ⇒ Option[(A, Future[Continuated[B]])], ft: FlowTermination[B]): Unit

    Permalink

    apply f and send result to channels processor.

    apply f and send result to channels processor.

    Definition Classes
    OutPortOutput
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def connect(inPort: InPort[A], bufferSize: Int = 1): Unit

    Permalink
  15. def connect(x: Output[A]): Unit

    Permalink
  16. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def inputSide: Option[Input[A]]

    Permalink
  22. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  26. def pam[B](g: (B) ⇒ A): Output[B]

    Permalink

    alias for premap

    alias for premap

    Definition Classes
    Output
  27. def premap[C](g: (C) ⇒ A): Output[C]

    Permalink

    before passing value to output, apply g to one.

    before passing value to output, apply g to one.

    Definition Classes
    Output
  28. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  30. def unfold[S](s: S)(f: (S) ⇒ (S, A)): Unit

    Permalink
    Definition Classes
    Output
  31. var v: Output[A]

    Permalink
  32. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def withOutputTimeouts(timeout: FiniteDuration): (Output[A], Input[FiniteDuration])

    Permalink

    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
  36. macro def write(a: A): A

    Permalink

    '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
  37. macro def writeAll[C <: Iterable[A]](it: C): Unit

    Permalink
    Definition Classes
    Output

Inherited from Output[A]

Inherited from GopherAPIProvider

Inherited from AnyRef

Inherited from Any

Ungrouped