Class/Object

com.github.yruslan.channel

Channel

Related Docs: object Channel | package channel

Permalink

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()

    Permalink

Abstract Value Members

  1. abstract def close(): Unit

    Permalink
    Definition Classes
    WriteChannel
  2. abstract def fetchValueOpt(): Option[T]

    Permalink
    Attributes
    protected
  3. abstract def hasCapacity: Boolean

    Permalink
    Attributes
    protected
  4. abstract def hasMessages: Boolean

    Permalink
    Attributes
    protected
  5. abstract def isClosed: Boolean

    Permalink
    Definition Classes
    ChannelLike
  6. abstract def recv(): T

    Permalink
    Definition Classes
    ReadChannel
    Annotations
    @throws( ... )
  7. abstract def send(value: T): Unit

    Permalink
    Definition Classes
    WriteChannel
    Annotations
    @throws( ... )
  8. abstract def tryRecv(timeout: Duration): Option[T]

    Permalink
    Definition Classes
    ReadChannel
    Annotations
    @throws( ... )
  9. abstract def tryRecv(): Option[T]

    Permalink
    Definition Classes
    ReadChannel
  10. abstract def trySend(value: T, timeout: Duration): Boolean

    Permalink
    Definition Classes
    WriteChannel
    Annotations
    @throws( ... )
  11. abstract def trySend(value: T): Boolean

    Permalink
    Definition Classes
    WriteChannel

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. final def awaitReaders(awaiter: Awaiter): Boolean

    Permalink
    Attributes
    protected
    Annotations
    @throws( ... )
  6. final def awaitReaders(): Unit

    Permalink
    Attributes
    protected
    Annotations
    @throws( ... )
  7. final def awaitWriters(awaiter: Awaiter): Boolean

    Permalink
    Attributes
    protected
    Annotations
    @throws( ... )
  8. final def awaitWriters(): Unit

    Permalink
    Attributes
    protected
    Annotations
    @throws( ... )
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. var closed: Boolean

    Permalink
    Attributes
    protected
  11. val crd: Condition

    Permalink
    Attributes
    protected
  12. val cwr: Condition

    Permalink
    Attributes
    protected
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def filter(f: (T) ⇒ Boolean): ReadChannel[T]

    Permalink
    Definition Classes
    ReadChannel
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def foreach[U](f: (T) ⇒ U): Unit

    Permalink
    Definition Classes
    ChannelReadChannel
    Annotations
    @throws( ... )
  18. final def fornew[U](f: (T) ⇒ U): Unit

    Permalink
    Definition Classes
    ChannelReadChannel
  19. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  22. val lock: ReentrantLock

    Permalink
    Attributes
    protected
  23. def map[U](f: (T) ⇒ U): ReadChannel[U]

    Permalink
    Definition Classes
    ReadChannel
  24. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyReaders(): Unit

    Permalink
    Attributes
    protected
  28. final def notifyWriters(): Unit

    Permalink
    Attributes
    protected
  29. val readWaiters: SimpleLinkedList[Semaphore]

    Permalink
    Attributes
    protected
  30. var readers: Int

    Permalink
    Attributes
    protected
  31. final def recver(action: (T) ⇒ Unit): Selector

    Permalink
    Definition Classes
    ChannelReadChannel
  32. final def sender(value: T)(action: ⇒ Unit = {}): Selector

    Permalink
    Definition Classes
    ChannelWriteChannel
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toList: List[T]

    Permalink
    Definition Classes
    ReadChannel
  35. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def withFilter(f: (T) ⇒ Boolean): ReadChannel[T]

    Permalink
    Definition Classes
    ReadChannel
  40. val writeWaiters: SimpleLinkedList[Semaphore]

    Permalink
    Attributes
    protected
  41. var writers: Int

    Permalink
    Attributes
    protected

Inherited from WriteChannel[T]

Inherited from ReadChannel[T]

Inherited from ChannelLike

Inherited from AnyRef

Inherited from Any

Ungrouped