Packages

abstract class Channel[T] extends ReadChannel[T] with WriteChannel[T]

Linear Supertypes
WriteChannel[T], ReadChannel[T], ChannelLike, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Channel
  2. WriteChannel
  3. ReadChannel
  4. ChannelLike
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Channel()

Abstract Value Members

  1. abstract def close(): Unit
    Definition Classes
    WriteChannel
  2. abstract def fetchValueOpt(): Option[T]
    Attributes
    protected
  3. abstract def hasCapacity: Boolean
    Attributes
    protected
  4. abstract def hasMessages: Boolean
    Attributes
    protected
  5. abstract def isClosed: Boolean
    Definition Classes
    ChannelLike
  6. abstract def recv(): T
    Definition Classes
    ReadChannel
    Annotations
    @throws( ... )
  7. abstract def send(value: T): Unit
    Definition Classes
    WriteChannel
    Annotations
    @throws( ... )
  8. abstract def tryRecv(timeout: Duration): Option[T]
    Definition Classes
    ReadChannel
    Annotations
    @throws( ... )
  9. abstract def tryRecv(): Option[T]
    Definition Classes
    ReadChannel
  10. abstract def trySend(value: T, timeout: Duration): Boolean
    Definition Classes
    WriteChannel
    Annotations
    @throws( ... )
  11. abstract def trySend(value: T): Boolean
    Definition Classes
    WriteChannel

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def awaitReaders(awaiter: Awaiter): Boolean
    Attributes
    protected
    Annotations
    @throws( ... )
  6. final def awaitReaders(): Unit
    Attributes
    protected
    Annotations
    @throws( ... )
  7. final def awaitWriters(awaiter: Awaiter): Boolean
    Attributes
    protected
    Annotations
    @throws( ... )
  8. final def awaitWriters(): Unit
    Attributes
    protected
    Annotations
    @throws( ... )
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. var closed: Boolean
    Attributes
    protected
  11. val crd: Condition
    Attributes
    protected
  12. val cwr: Condition
    Attributes
    protected
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def filter(f: (T) ⇒ Boolean): ReadChannel[T]
    Definition Classes
    ReadChannel
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def foreach[U](f: (T) ⇒ U): Unit
    Definition Classes
    ChannelReadChannel
    Annotations
    @throws( ... )
  18. final def fornew[U](f: (T) ⇒ U): Unit
    Definition Classes
    ChannelReadChannel
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. val lock: ReentrantLock
    Attributes
    protected
  23. def map[U](f: (T) ⇒ U): ReadChannel[U]
    Definition Classes
    ReadChannel
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyReaders(): Unit
    Attributes
    protected
  28. final def notifyWriters(): Unit
    Attributes
    protected
  29. val readWaiters: SimpleLinkedList[Waiter]
    Attributes
    protected
  30. var readers: Int
    Attributes
    protected
  31. final def recver(action: (T) ⇒ Unit): Selector
    Definition Classes
    ChannelReadChannel
  32. final def sender(value: T)(action: ⇒ Unit = {}): Selector
    Definition Classes
    ChannelWriteChannel
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toList: List[T]
    Definition Classes
    ReadChannel
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  39. def withFilter(f: (T) ⇒ Boolean): ReadChannel[T]
    Definition Classes
    ReadChannel
  40. val writeWaiters: SimpleLinkedList[Waiter]
    Attributes
    protected
  41. var writers: Int
    Attributes
    protected

Inherited from WriteChannel[T]

Inherited from ReadChannel[T]

Inherited from ChannelLike

Inherited from AnyRef

Inherited from Any

Ungrouped